Skip to content

Aula 01 de testes unitários exemplos de funções com testes, tutorial de instalação.

Notifications You must be signed in to change notification settings

RafaelR4mos/aula_01-testes-unitarios

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aula 01 Teste unitários ⚙️

Aula 01 de testes unitários exemplos de funções com testes, tutorial de instalação.

📕Material da aula: Link

Como utilizar o jest neste repo

  1. Rode o comando:
npm i

Irá instalar

  • @jest/globals (necessário para usar o Jest com TS)
  • @types/jest (tipagens do Jest para não necessitar o import em cada arquivo)
  • jest
  • ts-jest (transpilador TS para JS)
  1. Confira se você possui um arquivo jest.config.js com as seguintes configuraçõeS:
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
};
  1. Também é necessário o arquivo tsconfig.json para sumir um warning. Este deve estar neste formato:
{
  "compilerOptions": {
    "esModuleInterop": true
  }
}

About

Aula 01 de testes unitários exemplos de funções com testes, tutorial de instalação.

Topics

Resources

Stars

Watchers

Forks