Skip to content

Commit

Permalink
ajuste nomenclatura dos testes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrk-qa committed Aug 12, 2023
1 parent 75fea19 commit 266584b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/create_data.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { fakerPT_BR: faker } = require('@faker-js/faker')
const name = faker.internet.userName().toLowerCase()
const email = faker.internet.email().toLowerCase()

describe('criando dados ao DB', () => {
describe('Criando dados ao DB', () => {

it('[create] cria uma collection', () => {
cy.section('criar')
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/delete_data.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const number = Math.floor(Math.random() * 1000)

const options = { collection: 'types', database: 'pokemon' }

describe('excluindo dados do DB', () => {
describe('Excluindo dados do DB', () => {

it('[delete] derruba uma collection', () => {

Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/query_data.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const number = Math.floor(Math.random() * 1000)

const options = { collection: 'types', database: 'pokemon' }

describe('consultando dados do DB', () => {
describe('Consultando dados do DB', () => {

it('[query] consulta pelo "name"', () => {
cy.section('consultar e salvar a query')
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/update_data.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const number = Math.floor(Math.random() * 1000)

const options = { collection: 'types', database: 'pokemon' }

describe('atualizando dados do DB', () => {
describe('Atualizando dados do DB', () => {

it('[update] atualiza o "nome", depois realiza consulta e valida se foi atualizado', () => {
cy.section('atualizar um')
Expand Down

0 comments on commit 266584b

Please sign in to comment.