We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bbe1cd commit bebb3c7Copy full SHA for bebb3c7
1 file changed
test/transpile/module-resolution.spec.ts
@@ -446,7 +446,7 @@ describe("module resolution should not try to resolve modules in noResolvePaths"
446
.expectToHaveNoDiagnostics();
447
});
448
449
- test.only("can ignore specific files with glob pattern", () => {
+ test("can ignore specific files with glob pattern", () => {
450
util.testModule`
451
// Pre-Load as to not error out at runtime
452
import "preload";
@@ -472,7 +472,6 @@ describe("module resolution should not try to resolve modules in noResolvePaths"
472
}`
473
)
474
.setOptions({ noResolvePaths: ["ignore*"] })
475
- .debug()
476
.expectToHaveNoDiagnostics()
477
.expectToEqual({ result: "foo" });
478
0 commit comments