Skip to content

Commit

Permalink
what if we drop here
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranzav committed Jul 28, 2023
1 parent e3ae854 commit cdc07e4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ const setupAll = async () => {
}

const teardownAll = async () => {
//await sequelize.drop({})
client.actionManager?.pause()
await sequelize.drop({})
}

const setupEach = async () => {
Expand Down Expand Up @@ -573,12 +573,12 @@ describe('Cost models', () => {
})

describe('Feature: Inject $DAI variable', () => {
beforeAll(setupAll)
beforeEach(() => {
return setupEach()
})
afterEach(teardownEach)
afterAll(teardownAll)
beforeEach(setupAll)
// beforeEach(() => {
// return setupEach()
// })
// afterEach(teardownEach)
afterEach(teardownAll)

test('$DAI variable is preserved when clearing variables', async () => {
const initial = {
Expand Down

0 comments on commit cdc07e4

Please sign in to comment.