We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e102d1 commit a132921Copy full SHA for a132921
packages/core/test/lib/client.test.ts
@@ -2216,7 +2216,9 @@ describe('Client', () => {
2216
test('close flushes the logs buffer', async () => {
2217
vi.useRealTimers();
2218
2219
- const flushLogsSpy = vi.spyOn(logsInternalModule, '_INTERNAL_flushLogsBuffer').mockImplementation(() => undefined);
+ const flushLogsSpy = vi
2220
+ .spyOn(logsInternalModule, '_INTERNAL_flushLogsBuffer')
2221
+ .mockImplementation(() => undefined);
2222
2223
const options = getDefaultTestClientOptions({ dsn: PUBLIC_DSN });
2224
const client = new TestClient(options);
0 commit comments