Skip to content

Commit

Permalink
test: disable old buggy test against CDn issues
Browse files Browse the repository at this point in the history
  • Loading branch information
victorfernandesraton committed Jun 29, 2024
1 parent ac92f13 commit 14b22c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/service/apicep.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import assert from 'node:assert/strict'
import { RequestWIthFetch } from '../../src/requester/index.mjs'
import { ApiCepService } from '../../src/service/apicep/index.mjs'

describe.skip('ApiCepService', () => {
describe.skip('ApiCepService', {}, () => {
const stub = new ApiCepService(new RequestWIthFetch())

test('should be a valid cep', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/service/brasilAPI.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import assert from 'node:assert/strict'
import { RequestWIthFetch } from '../../src/requester/index.mjs'
import { BrasilAPIService } from '../../src/service/brasilAPI/index.mjs'

describe.skip('BrasilAPIService', () => {
describe('BrasilAPIService', () => {
const stub = new BrasilAPIService(new RequestWIthFetch())

test('should be a valid cep', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/service/viaCep.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import assert from 'node:assert/strict'
import { RequestWIthFetch } from '../../src/requester/index.mjs'
import { ViaCepService } from '../../src/service/viacep/index.mjs'

describe.skip('ViaCepService', () => {
describe('ViaCepService', () => {
const stub = new ViaCepService(new RequestWIthFetch())

test('should be a valid cep', async () => {
Expand Down

0 comments on commit 14b22c5

Please sign in to comment.