Skip to content

Commit

Permalink
fix: remove .only
Browse files Browse the repository at this point in the history
  • Loading branch information
clauBv23 committed Jan 15, 2025
1 parent 35a830c commit b878cc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/test/10_unit-testing/11_plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ async function loadFixtureAndGrantCreatePermission(): Promise<FixtureResult> {
return data;
}

describe.only('Multisig', function () {
describe('Multisig', function () {
before(async () => {
chainId = (await ethers.provider.getNetwork()).chainId;
});
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/test/10_unit-testing/12_plugin-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ async function fixture(): Promise<FixtureResult> {
};
}

describe.only('MultisigSetup', function () {
describe('MultisigSetup', function () {
it('does not support the empty interface', async () => {
const {pluginSetup} = await loadFixture(fixture);
expect(await pluginSetup.supportsInterface('0xffffffff')).to.be.false;
Expand Down

0 comments on commit b878cc5

Please sign in to comment.