Skip to content

Commit e733396

Browse files
committed
More nuxt fixes
1 parent 6ee1b43 commit e733396

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/nuxt/tests/composables/useDiagnosticsLogger.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ describe('useDiagnosticsLogger', () => {
6666
expect(logEvents.length).toBeGreaterThan(0);
6767
const event = logEvents[0];
6868
expect(event.value).toMatchObject({
69-
tag: 'TestContext',
7069
message: testMessage,
7170
level: 'WARNING'
7271
});
@@ -100,7 +99,7 @@ describe('useDiagnosticsLogger', () => {
10099

101100
expect(consoleSpy).toHaveBeenCalled();
102101
expect(consoleSpy.mock.calls.map((call) => call[0])).toEqual(
103-
expect.arrayContaining([expect.stringContaining('[PowerSync.tag]')])
102+
expect.arrayContaining([expect.stringContaining('[PowerSync]')])
104103
);
105104

106105
consoleSpy.mockRestore();

0 commit comments

Comments
 (0)