📌  相关文章
📜  开玩笑创建反应应用程序只运行一个测试 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:41.978000             🧑  作者: Mango

代码示例1
npm run test -- -t 'test-name'
Where test-name is the value used in the describe function in jest -

describe('test-name', () => {
  it('does something', () => { ... });
});