Skip to content

Commit

Permalink
Remove .only from test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSamWitch committed Feb 14, 2024
1 parent ef8d16f commit 45986ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/SamWitchOrderBook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {ethers, upgrades} from "hardhat";
import {expect} from "chai";
import {ISamWitchOrderBook, SamWitchOrderBook} from "../typechain-types";

describe.only("SamWitchOrderBook", function () {
describe("SamWitchOrderBook", function () {
enum OrderSide {
Buy,
Sell,
Expand Down Expand Up @@ -985,7 +985,7 @@ describe.only("SamWitchOrderBook", function () {
await expect(orderBook.cancelOrders([orderId], [])).to.be.revertedWithCustomError(orderBook, "LengthMismatch");
});

it.only("Remove an item, check the order can still be cancelled just not fulfilled", async function () {
it("Remove an item, check the order can still be cancelled just not fulfilled", async function () {
const {orderBook, tokenId, brush, owner, alice} = await loadFixture(deployContractsFixture);

const price = 100;
Expand Down

0 comments on commit 45986ea

Please sign in to comment.