“Führen Sie einen Scherz auf einer einzelnen Datei aus” Code-Antworten

Führen Sie einen Scherz auf einer einzelnen Datei aus

npm test <ng-project> -- --testFile "file-name-part"
Agreeable Antelope

Führen Sie einen Scherztest für eine einzige Datei aus

yarn test -- <file-name>
gritter97

NPM Führen Sie nur einen Test aus

n order to run a specific test, you'll need to use the jest command. npm test will not work. To access jest directly on the command line, install it via npm i -g jest-cli or yarn global add jest-cli.

Then simply run your specific test with jest bar.spec.js.

Note: You don't have to enter the full path to your test file. The argument is interpreted as a regexp. Any part of the full path that uniquely identifies a file suffices.
Arex

Ähnliche Antworten wie “Führen Sie einen Scherz auf einer einzelnen Datei aus”

Fragen ähnlich wie “Führen Sie einen Scherz auf einer einzelnen Datei aus”

Weitere verwandte Antworten zu “Führen Sie einen Scherz auf einer einzelnen Datei aus” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen