Skip to content

Commit

Permalink
remove .only
Browse files Browse the repository at this point in the history
  • Loading branch information
novaknole committed Nov 4, 2024
1 parent 4dbaadf commit 0f6ff10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/test/executors/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export async function getActions() {
};
}

describe.only('Executor', async () => {
describe('Executor', async () => {
let data: any;
let executor: Executor;
let ownerAddress: string;
Expand All @@ -65,7 +65,7 @@ describe.only('Executor', async () => {
});

describe('ERC-165', async () => {
it.only('supports the `ERC-165` standard', async () => {
it('supports the `ERC-165` standard', async () => {
await erc165ComplianceTests(executor, signers[0]);
});

Expand Down

0 comments on commit 0f6ff10

Please sign in to comment.