Skip to content

Commit

Permalink
fix tests lol
Browse files Browse the repository at this point in the history
  • Loading branch information
Lms24 committed Jan 11, 2024
1 parent b383022 commit 392a5cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ Sentry.init({
email: 'user@name.com',
username: 'user1337',
},
tags: {
test: 'abc',
},
},
debug: true,
});
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sentryTest('should start a new session on pageload.', async ({ getLocalTestPath,
expect(session.init).toBe(true);
expect(session.errors).toBe(0);
expect(session.status).toBe('ok');
expect(session.did).toBe('dsdd');
expect(session.did).toBe('1337');
});

sentryTest('should start a new session with navigation.', async ({ getLocalTestPath, page, browserName }) => {
Expand All @@ -37,4 +37,5 @@ sentryTest('should start a new session with navigation.', async ({ getLocalTestP
expect(newSession.status).toBe('ok');
expect(newSession.sid).toBeDefined();
expect(initSession.sid).not.toBe(newSession.sid);
expect(newSession.did).toBe('1337');
});

0 comments on commit 392a5cf

Please sign in to comment.