Skip to content

Commit c11cc70

Browse files
fix: add pending tests to workspace
1 parent a3a35d5 commit c11cc70

File tree

11 files changed

+20
-1
lines changed

11 files changed

+20
-1
lines changed

test-workspaces/config-file-change/hello.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ describe('math', () => {
88
it('subtraction', async () => {
99
strictEqual(1 - 1, 0);
1010
});
11+
12+
it('pending');
1113
});

test-workspaces/no-config/hello.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ describe('math', () => {
88
it('subtraction', async () => {
99
strictEqual(1 - 1, 0);
1010
});
11+
12+
it('pending');
1113
});

test-workspaces/simple/skip.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ describe('skip-suite-2', () => {
1515
strictEqual(1 + 1, 2);
1616
});
1717

18+
it('pending test');
19+
1820
it('subtraction', async () => {
1921
strictEqual(1 - 1, 0);
2022
});

test-workspaces/source-mapped/hello.test.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-workspaces/source-mapped/hello.test.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-workspaces/source-mapped/hello.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ describe('math', () => {
88
it('subtraction', async () => {
99
strictEqual(1 - 1, 0);
1010
});
11+
12+
it('pending test');
1113
});

test-workspaces/tsnode-checkjs/test/hello.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ describe('math', () => {
44
it('addition', async () => {
55
strictEqual((1 + 1) as number, 2 as any as number);
66
});
7+
8+
it('pending test');
79
});

test-workspaces/typescript-full/hello.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,7 @@ describe('math', () => {
2222
strictEqual((1 - 1) as number, 0 as any as number);
2323
});
2424

25+
it('pending');
26+
2527
createTests(['dynamic1', 'dynamic2'])
2628
});

test-workspaces/typescript-full/shared.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ export function createTests(names: string[]) {
77
it(name, ()=> {
88
strictEqual((1 + 1) as number, 2 as any as number);
99
})
10+
11+
it(`${name} pending`);
1012
}
1113
}

test-workspaces/typescript-top-level-await/hello.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ describe('math', () => {
2323
it('subtraction', async () => {
2424
strictEqual((1 - 1) as number, 0 as any as number);
2525
});
26+
27+
it('pending');
2628
});

0 commit comments

Comments
 (0)