Skip to content

Commit

Permalink
Add time measurements
Browse files Browse the repository at this point in the history
  • Loading branch information
OlliMartin committed Feb 16, 2025
1 parent b65ef5e commit d748e52
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@ describe('metadata resync', () => {
serviceAdapter = intTestContext.serviceAdapterMock;
stateObserver = intTestContext.stateObserver;

const startMockMs = Date.now();
await intTestContext.startMockServersAsync();
console.log(`Mock server started in ${Date.now() - startMockMs}ms.`);

const signalrMs = Date.now();
await intTestContext.startAndWaitForSignalR();
console.log(`SignalR clients connected in ${Date.now() - signalrMs}ms.`);
}, 15_000);

beforeEach(() => {
Expand Down

0 comments on commit d748e52

Please sign in to comment.