Skip to content

Commit

Permalink
fix: Skip its
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia committed Mar 22, 2024
1 parent a89f556 commit 3b1f368
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/modules/collection/sagas.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2014,7 +2014,7 @@ describe('when handling the fetch of a collection', () => {
})
})

describe.skip('when publishing a collection with fiat', () => {
describe('when publishing a collection with fiat', () => {
let subscribeToNewsletter: boolean
let collection: Collection
let items: Item[]
Expand Down Expand Up @@ -2168,7 +2168,8 @@ describe.skip('when publishing a collection with fiat', () => {
wertEnv = 'dev'
})

it('should dispatch the action to open the fiat gateway widget with dev parameters', () => {
// TODO: Unskip once the success action can be reached.
it.skip('should dispatch the action to open the fiat gateway widget with dev parameters', () => {
return expectSaga(collectionSaga, mockBuilder, mockBuilderClient)
.provide([
[call([mockBuilder, 'fetchCollectionItems'], collection.id), serverItems],
Expand Down Expand Up @@ -2203,7 +2204,8 @@ describe.skip('when publishing a collection with fiat', () => {
wertEnv = 'prod'
})

it('should dispatch the action to open the fiat gateway widget with prod parameters', () => {
// TODO: Unskip once the success action can be reached.
it.skip('should dispatch the action to open the fiat gateway widget with prod parameters', () => {
return expectSaga(collectionSaga, mockBuilder, mockBuilderClient)
.provide([
[call([mockBuilder, 'fetchCollectionItems'], collection.id), serverItems],
Expand Down

0 comments on commit 3b1f368

Please sign in to comment.