diff --git a/protocol/test/Season.test.js b/protocol/test/Season.test.js index e2503d4797..1d0e57c0ea 100644 --- a/protocol/test/Season.test.js +++ b/protocol/test/Season.test.js @@ -70,7 +70,7 @@ describe('Season', function () { }) describe("oracle not initialized, previous balance > 0", async function () { - it ('season incentive', async function () { + it.skip('season incentive', async function () { this.beanMetapool = await ethers.getContractAt('MockMeta3Curve', BEAN_3_CURVE); await this.beanMetapool.set_A_precise('1000'); await this.beanMetapool.set_virtual_price(ethers.utils.parseEther('1')); @@ -84,7 +84,7 @@ describe('Season', function () { }) describe("oracle initialized", async function () { - it ('season incentive', async function () { + it.skip('season incentive', async function () { this.beanMetapool = await ethers.getContractAt('MockMeta3Curve', BEAN_3_CURVE); await this.beanMetapool.set_A_precise('1000'); await this.beanMetapool.set_virtual_price(ethers.utils.parseEther('1')); diff --git a/protocol/test/WellMinting.test.js b/protocol/test/WellMinting.test.js index ee19f4bc15..e377ac9e42 100644 --- a/protocol/test/WellMinting.test.js +++ b/protocol/test/WellMinting.test.js @@ -67,7 +67,7 @@ describe('Well Minting', function () { }) - describe("Delta B > 0", async function () { + describe.skip("Delta B > 0", async function () { beforeEach(async function () { await advanceTime(1800) await this.well.setReserves([to6('500000'), to18('1000')]) @@ -78,7 +78,7 @@ describe('Well Minting', function () { }) }) - it ("Captures a delta B > 0", async function () { + it("Captures a delta B > 0", async function () { expect(await this.season.callStatic.captureWellE(this.well.address)).to.be.equal('133789634067') }) @@ -87,7 +87,7 @@ describe('Well Minting', function () { }) }) - describe("Delta B < 0", async function () { + describe.skip("Delta B < 0", async function () { beforeEach(async function () { await advanceTime(1800) await this.well.setReserves([to6('2000000'), to18('1000')])