1. Add env variables loader using dotenv to e2e tests 2. Skip Team account tests based on variable 3. Remove hardcoded instance of Makerkit in tests
21 lines
585 B
TypeScript
21 lines
585 B
TypeScript
/*
|
|
Mock modules for development.
|
|
|
|
This file is used to mock the modules that are not needed during development (unless they are used).
|
|
It allows the development server to load faster by not loading the modules that are not needed.
|
|
*/
|
|
|
|
// Turnstile
|
|
export const Turnstile = undefined;
|
|
export const TurnstileProps = {};
|
|
|
|
// Baselime
|
|
export const useBaselimeRum = undefined;
|
|
export const BaselimeRum = undefined;
|
|
|
|
// Sentry
|
|
export const captureException = () => ({});
|
|
export const captureEvent = () => ({});
|
|
export const setUser = () => ({});
|
|
export const init = () => ({});
|