Skip to content

Commit

Permalink
chore: Remove only from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielePicco committed Oct 15, 2024
1 parent 3562907 commit 2d08db1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/bolt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ describe("bolt", () => {

const secondAuthority = Keypair.generate().publicKey;

it.only("InitializeRegistry", async () => {
it("InitializeRegistry", async () => {
const registryPda = FindRegistryPda({});
const initializeRegistryIx = createInitializeRegistryInstruction({
registry: registryPda,
Expand All @@ -114,7 +114,7 @@ describe("bolt", () => {
await provider.sendAndConfirm(tx);
});

it.only("InitializeNewWorld", async () => {
it("InitializeNewWorld", async () => {
const initializeNewWorld = await InitializeNewWorld({
payer: provider.wallet.publicKey,
connection: provider.connection,
Expand Down

0 comments on commit 2d08db1

Please sign in to comment.