Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 554 Bytes

tests.md

File metadata and controls

34 lines (24 loc) · 554 Bytes

Cobertura Atual

0%

Estrutura de Testes

  • Unitário: *.unit.spec.ts
  • Integração: *.integration.spec.ts
  • End to end: *.e2e.spec.ts

Execução dos testes

# 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




Voltar ao Readme