Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Long committed Sep 17, 2024
1 parent 257d5a9 commit 622d323
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
1 change: 0 additions & 1 deletion packages/e2e-tests/setup.jest.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

require('dotenv').config();
console.log('loaded configuration from .env', __dirname);

Expand Down
9 changes: 6 additions & 3 deletions packages/e2e-tests/src/tests/Core/connection.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ try {

describe('Connections', () => {
beforeEach(() => {
jest.spyOn(console, 'warn').mockImplementation(jest.fn(() => {void 0;}));
jest.spyOn(console, 'warn').mockImplementation(
jest.fn(() => {
void 0;
})
);
});

let devEnv: TinnyEnvironment;
beforeAll(async () => {
devEnv = new TinnyEnvironment(undefined, {useRLI: false});
devEnv = new TinnyEnvironment(undefined, { useRLI: false });
await devEnv.init();
});

Expand Down Expand Up @@ -56,5 +60,4 @@ describe('Connections', () => {
);
});
});

});
8 changes: 6 additions & 2 deletions packages/e2e-tests/src/tests/Epoch/EpochTransition.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ import { getPkpSessionSigs, TinnyEnvironment } from '@lit-protocol/tinny';

describe('Epoch Transition', () => {
beforeEach(() => {
jest.spyOn(console, 'warn').mockImplementation(jest.fn(() => { void 0; }));
jest.spyOn(console, 'warn').mockImplementation(
jest.fn(() => {
void 0;
})
);
});

let devEnv: TinnyEnvironment;
beforeAll(async () => {
devEnv = new TinnyEnvironment(undefined, {useRLI: false});
devEnv = new TinnyEnvironment(undefined, { useRLI: false });
await devEnv.init();
}, 60 * 60 * 1_000);

Expand Down

0 comments on commit 622d323

Please sign in to comment.