0%
- Unitário:
*.unit.spec.ts
- Integração:
*.integration.spec.ts
- End to end:
*.e2e.spec.ts
# executa todos os testes.
$ npm run test
# executa e fica assistindo todos os testes.
$ npm run test:watch
# executa apenas os testes unitários.
$ npm run test:unit
# executa apenas os testes de integração.
$ npm run test:integration
# executa apenas os testes e2e.
$ npm run test:e2e