Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Jan 7, 2024
1 parent 760db1b commit b70de6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/ts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ describe('test/ts.test.ts', () => {
})
// .debug()
.end();
assert.match(stderr, /ts-node@10\.9\.0/);
assert.match(stderr, /ts-node@10\.\d+\.\d+/);
assert.equal(code, 0);
});

Expand Down Expand Up @@ -278,7 +278,7 @@ describe('test/ts.test.ts', () => {
})
// .debug()
.end();
assert.match(stderr, /ts-node@10\.9\.0/);
assert.match(stderr, /ts-node@10\.\d+\.\d+/);
assert.equal(code, 0);
});

Expand Down Expand Up @@ -308,7 +308,7 @@ describe('test/ts.test.ts', () => {
})
// .debug()
.end();
assert.doesNotMatch(stderr, /ts-node@10\.9\.0/);
assert.doesNotMatch(stderr, /ts-node@10\.\d+\.\d+/);
assert.equal(code, 0);
});

Expand Down Expand Up @@ -405,7 +405,7 @@ describe('test/ts.test.ts', () => {
})
// .debug()
.end();
assert.match(stdout, /ts-node@10\.9\.0/);
assert.match(stdout, /ts-node@10\.\d+\.\d+/);
assert.equal(code, 0);
});

Expand Down

0 comments on commit b70de6e

Please sign in to comment.