You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/test/test.ts
+17-5
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ test('throw if no type definition was found', async t => {
7
7
});
8
8
9
9
test('throw if no test is found',asynct=>{
10
-
awaitt.throwsAsync(m({cwd: path.join(__dirname,'fixtures/no-test')}),'The test file `index.test-d.ts` does not exist. Create one and try again.');
10
+
awaitt.throwsAsync(m({cwd: path.join(__dirname,'fixtures/no-test')}),'The test file `index.test-d.ts` or `index.test-d.tsx` does not exist. Create one and try again.');
11
11
});
12
12
13
13
test('return diagnostics',asynct=>{
@@ -91,19 +91,19 @@ test('overridden config defaults to `strict` if `strict` is not explicitly overr
91
91
t.is(column,19);
92
92
});
93
93
94
-
test('fail if types are used from a lib that wasn\'t explicitly specified',asynct=>{
94
+
test('fail if types are used from a lib that was not explicitly specified',asynct=>{
0 commit comments