Skip to content

Commit becb1b1

Browse files
authored
Merge pull request #11 from fells-code/dev
v.0.0.7 - Magic Links
2 parents 1aaeb8d + b1da899 commit becb1b1

40 files changed

Lines changed: 2254 additions & 1080 deletions

.github/workflows/release-beta.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

jest.setup.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,14 @@ import { TextEncoder, TextDecoder } from 'util';
33

44
(global as any).TextEncoder = TextEncoder;
55
(global as any).TextDecoder = TextDecoder;
6+
7+
(global as any).BroadcastChannel = class {
8+
onmessage = null;
9+
postMessage() {}
10+
close() {}
11+
};
12+
13+
beforeAll(() => {
14+
jest.spyOn(console, 'error').mockImplementation(() => {});
15+
jest.spyOn(console, 'warn').mockImplementation(() => {});
16+
});

0 commit comments

Comments
 (0)