File: didYouMeanSuggestionErrors.js

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (55 lines) | stat: -rw-r--r-- 1,480 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//// [didYouMeanSuggestionErrors.ts]
describe("my test suite", () => {
    it("should run", () => {
        const a = $(".thing");
    });
});

suite("another suite", () => {
    test("everything else", () => {
        console.log(process.env);
        document.createElement("div");

        const x = require("fs");
        const y = Buffer.from([]);
        const z = module.exports;

        const a = new Map();
        const b = new Set();
        const c = new WeakMap();
        const d = new WeakSet();
        const e = Symbol();
        const f = Promise.resolve(0);

        const i: Iterator<any> = null as any;
        const j: AsyncIterator<any> = null as any;
        const k: Symbol = null as any;
        const l: Promise<any> = null as any;
    });
});

//// [didYouMeanSuggestionErrors.js]
describe("my test suite", function () {
    it("should run", function () {
        var a = $(".thing");
    });
});
suite("another suite", function () {
    test("everything else", function () {
        console.log(process.env);
        document.createElement("div");
        var x = require("fs");
        var y = Buffer.from([]);
        var z = module.exports;
        var a = new Map();
        var b = new Set();
        var c = new WeakMap();
        var d = new WeakSet();
        var e = Symbol();
        var f = Promise.resolve(0);
        var i = null;
        var j = null;
        var k = null;
        var l = null;
    });
});