diff options
| author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2022-04-16 20:51:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-16 21:51:55 +0200 |
| commit | bd6494d1194781f798f5eeaa822adc76dd27048e (patch) | |
| tree | e7bd456c8cc8f57dfdabf42cbcbcff9a83f993c8 /cli/tests/testdata/compat | |
| parent | 5f2d9a4a220307b1111c91dfac74951ef3925457 (diff) | |
fix(cli/tools/test): Prefix test module paths with "./" (#14301)
Diffstat (limited to 'cli/tests/testdata/compat')
| -rw-r--r-- | cli/tests/testdata/compat/test_runner/cjs.out | 6 | ||||
| -rw-r--r-- | cli/tests/testdata/compat/test_runner/esm.out | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cli/tests/testdata/compat/test_runner/cjs.out b/cli/tests/testdata/compat/test_runner/cjs.out index 722721166..7daf096db 100644 --- a/cli/tests/testdata/compat/test_runner/cjs.out +++ b/cli/tests/testdata/compat/test_runner/cjs.out @@ -1,10 +1,10 @@ -running 2 tests from compat/test_runner/cjs.js +running 2 tests from ./compat/test_runner/cjs.js Correct assertion ... ok ([WILDCARD]) Failed assertion ... FAILED ([WILDCARD]) failures: -compat/test_runner/cjs.js > Failed assertion +./compat/test_runner/cjs.js > Failed assertion AssertionError: Values are not strictly equal: @@ -20,7 +20,7 @@ AssertionError: Values are not strictly equal: failures: - compat/test_runner/cjs.js + ./compat/test_runner/cjs.js Failed assertion test result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD]) diff --git a/cli/tests/testdata/compat/test_runner/esm.out b/cli/tests/testdata/compat/test_runner/esm.out index f135c993d..8b51609f2 100644 --- a/cli/tests/testdata/compat/test_runner/esm.out +++ b/cli/tests/testdata/compat/test_runner/esm.out @@ -1,10 +1,10 @@ -running 2 tests from compat/test_runner/esm.mjs +running 2 tests from ./compat/test_runner/esm.mjs Correct assertion ... ok ([WILDCARD]) Failed assertion ... FAILED ([WILDCARD]) failures: -compat/test_runner/esm.mjs > Failed assertion +./compat/test_runner/esm.mjs > Failed assertion AssertionError: Values are not strictly equal: @@ -20,7 +20,7 @@ AssertionError: Values are not strictly equal: failures: - compat/test_runner/esm.mjs + ./compat/test_runner/esm.mjs Failed assertion test result: FAILED. 1 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out ([WILDCARD]) |
