Skip to content

Commit

Permalink
test/unit: Fix unit tests as well!
Browse files Browse the repository at this point in the history
  • Loading branch information
victorges committed Jul 10, 2023
1 parent 1d61e01 commit d9c4822
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit/BondingCheckpoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {constants} from "ethers"
chai.use(solidity)
const {expect} = chai

describe.only("BondingCheckpoints", () => {
describe("BondingCheckpoints", () => {
let fixture
let bondingCheckpoints

Expand Down
2 changes: 1 addition & 1 deletion test/unit/SortedArrays.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import runSolidityTest from "./helpers/runSolidityTest"

runSolidityTest.only(
runSolidityTest(
"TestSortedArrays",
["AssertUint", "AssertBool"],
undefined,
Expand Down
4 changes: 4 additions & 0 deletions test/unit/helpers/Fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ export default class Fixture {
BondingManagerMock,
"BondingManager"
)
this.bondingCheckpoints = await this.deployAndRegister(
GenericMock,
"BondingCheckpoints"
)
this.roundsManager = await this.deployAndRegister(
GenericMock,
"RoundsManager"
Expand Down

0 comments on commit d9c4822

Please sign in to comment.