-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.spec.ts
43 lines (30 loc) · 1016 Bytes
/
test.spec.ts
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
import {test} from "@playwright/test"
import {useB} from "./C"
test("foo", async () => {
useB();
})
/*
david@inLeagueGS65:~/rmme/playwright-module-resolution-stack$ npx playwright test test
Running 0 tests using 0 workers
ReferenceError: document is not defined
at A.ts:1
> 1 | import iziToast from "izitoast";
| ^
2 |
3 | export function useIziToast() {
4 | console.log(iziToast);
at /home/david/rmme/playwright-module-resolution-stack/node_modules/izitoast/dist/js/iziToast.js:23:10
at /home/david/rmme/playwright-module-resolution-stack/node_modules/izitoast/dist/js/iziToast.js:10:20
at Object.<anonymous> (/home/david/rmme/playwright-module-resolution-stack/node_modules/izitoast/dist/js/iziToast.js:14:3)
at Object.<anonymous> (/home/david/rmme/playwright-module-resolution-stack/A.ts:1:1)
=================
no tests found.
=================
*/
/*
in the above it would be nice to see a stack containing
A.ts ->
B.ts ->
C.ts ->
test.spec.ts
*/