Skip to content

Commit e21b5ba

Browse files
authored
Merge branch 'main' into 34-split-test-case-info-to-executor-layer
2 parents 29951c9 + f6765cd commit e21b5ba

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

tests/ts/test/utils/path.test.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,8 @@ test("findRoot", () => {
2828
});
2929

3030
test("getIncludeFiles", () => {
31-
expect(getIncludeFiles(["src/core"], (s) => s.endsWith(".ts"))).toEqual([
32-
path.normalize("src/core/compile.ts"),
33-
path.normalize("src/core/execute.ts"),
34-
path.normalize("src/core/executionRecorder.ts"),
35-
path.normalize("src/core/instrument.ts"),
36-
path.normalize("src/core/precompile.ts"),
37-
]);
38-
expect(getIncludeFiles(["tests/ts/fixture/transformFunction.ts"], (s) => s.endsWith(".ts"))).toEqual([
39-
path.normalize("tests/ts/fixture/transformFunction.ts"),
31+
expect(getIncludeFiles(["tests/ts/test/utils/resources"], (s) => s.endsWith(".resource"))).toEqual([
32+
path.normalize("tests/ts/test/utils/resources/a.resource"),
33+
path.normalize("tests/ts/test/utils/resources/b.resource"),
4034
]);
4135
});

tests/ts/test/utils/resources/a.resource

Whitespace-only changes.

tests/ts/test/utils/resources/b.resource

Whitespace-only changes.

0 commit comments

Comments
 (0)