假如有這個檔案tests/test.test.ts
:
describe('test-group', () => {
it('t1', async() => {
console.log('t1');
});
it('t2', () => {
console.log('t2');
});
});
我只想執行裡面的t2,則可以這樣:
npx jest tests/test.test.ts --testNamePattern="test-group t2"
跨級別之間用空格分隔即可。