| import fetchMock from 'fetch-mock'; | |
| import './index'; | |
| const loginURL = `https://${window.location.host}/loginstatus/`; | |
| fetchMock.get(loginURL, { | |
| Email: 'user@google.com', | |
| LoginURL: 'https://accounts.google.com/', | |
| IsAGoogler: true, | |
| }); | |
| fetchMock.get('https://skia.org/loginstatus/', { | |
| Email: 'user@google.com', | |
| LoginURL: 'https://accounts.google.com/', | |
| IsAGoogler: true, | |
| }); |