How do I run a single test using Jest?

后端 未结 14 1854
轮回少年
轮回少年 2020-12-12 10:22

I have a test \'works with nested children\' within the file fix-order-test.js.

Running the below runs all the tests in the file.

jest fix-order-test         


        
14条回答
  •  天命终不由人
    2020-12-12 10:28

    Use:

    npm run test -- test-name
    

    This will only work if your test specification name is unique.

    The code above would reference a file with this name: test-name.component.spec.ts

提交回复
热议问题