Skip to content

Commit

Permalink
fix: unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ovflowd committed Dec 23, 2024
1 parent 4165ee1 commit df13a06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe('useDetectOS', () => {
await waitFor(() => {
expect(result.current).toStrictEqual({
os: 'MAC',
bitness: 86,
bitness: 64,
architecture: '',
});
});
Expand Down
4 changes: 2 additions & 2 deletions apps/site/providers/__tests__/matterProvider.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const mockContext = {
headings: [],
readingTime: { text: '', minutes: 0, time: 0, words: 0 },
filename: '',
os: 'OTHER',
architecture: 'x64',
os: expect.any(String),
architecture: '',
bitness: 64,
};

Expand Down

0 comments on commit df13a06

Please sign in to comment.