Skip to content

Commit 7b8bd80

Browse files
committed
Add debug to resolution test to try to figure out why CI is failing
1 parent 4f8bec0 commit 7b8bd80

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/transpile/module-resolution.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ describe("basic module resolution", () => {
66

77
const projectWithNodeModules = util
88
.testProject(path.join(projectPath, "tsconfig.json"))
9-
.setMainFileName(path.join(projectPath, "main.ts"));
9+
.setMainFileName(path.join(projectPath, "main.ts"))
10+
.debug();
1011

1112
test("can resolve global dependencies with declarations", () => {
1213
// Declarations in the node_modules directory
@@ -152,6 +153,7 @@ describe("module resolution with sourceDir", () => {
152153
util.testProject(path.join(projectPath, "tsconfig.json"))
153154
.setMainFileName(path.join(projectPath, "src", "main.ts"))
154155
.setOptions({ outDir: "tstl-out" })
156+
.debug()
155157
.expectToEqual(expectedResult);
156158
});
157159

0 commit comments

Comments
 (0)