question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

How to run single test?

See original GitHub issue

Now I’m running all tests like npm run test How can I run single test (single file?

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

3reactions
Naktibaldacommented, Sep 18, 2018

You could use --grep parameter of mocha: node node_modules/mocha/bin/mocha spec/ --exit --grep=name-fragment More about grep: http://www.petecorey.com/blog/2016/07/25/mochas-grep-flag/

0reactions
ikr0mcommented, Oct 4, 2018

@Naktibalda @codeforequity-at Thank you guys, it works great! I’ve run above command in samples/watson folder. Small issue that mochawesome-report is not updated with last run test results. I can see test results in terminal. So far this is ok.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Running a Single Test or Method With Maven
If we want to execute a single test class, we can execute the command mvn test -Dtest=”TestClassName”. For instance, we can pass -Dtest=” ......
Read more >
Maven Surefire Plugin – Running a Single Test
During development, you may run a single test class repeatedly. To run this through Maven, set the test property to a specific test...
Read more >
How do I run a single test using Jest?
Another way is to run tests in watch mode, jest --watch , and then press P to filter the tests by typing the...
Read more >
Two useful ways to easily run a single test using Jest
Another easier way to run a specific or single test with Jest without changing the code is by using the testNamePattern CLI parameter....
Read more >
Run Single Test - PyCharm Guide
Run Single Test · With the cursor anywhere in the test you want to focus on, right-click and choose to run that in...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found