f14ad61bd0
* build: move build process and excalidraw-app dependencies in its own package.json * fix * fix public path * move bug-issue-template to excalidraw-app * make env vars accessible in excalidraw app * update build script * install when building * add ts ignore * fix build-version script * update config in vercel.json * add vercel config for example * fix vercel config * update install script in vercel * update install script in lint.yml * update install script in test workflows * push locales to locales folder pwa * add favicons to manifest * move react to peer deps in editor * fix ts * Enable vite intellisense * add global.d.ts for excalidraw-app * remove console.log * remove react, react-dom and vite from excalidraw-app deps * increase size limit
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import ExcalidrawApp from "../App";
|
|
import {
|
|
mockBoundingClientRect,
|
|
render,
|
|
restoreOriginalGetBoundingClientRect,
|
|
} from "../../src/tests/test-utils";
|
|
|
|
import { UI } from "../../src/tests/helpers/ui";
|
|
|
|
describe("Test MobileMenu", () => {
|
|
const { h } = window;
|
|
const dimensions = { height: 400, width: 800 };
|
|
|
|
beforeAll(() => {
|
|
mockBoundingClientRect(dimensions);
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await render(<ExcalidrawApp />);
|
|
// @ts-ignore
|
|
h.app.refreshViewportBreakpoints();
|
|
// @ts-ignore
|
|
h.app.refreshEditorBreakpoints();
|
|
});
|
|
|
|
afterAll(() => {
|
|
restoreOriginalGetBoundingClientRect();
|
|
});
|
|
|
|
it("should set device correctly", () => {
|
|
expect(h.app.device).toMatchInlineSnapshot(`
|
|
{
|
|
"editor": {
|
|
"canFitSidebar": false,
|
|
"isMobile": true,
|
|
},
|
|
"isTouchScreen": false,
|
|
"viewport": {
|
|
"isLandscape": false,
|
|
"isMobile": true,
|
|
},
|
|
}
|
|
`);
|
|
});
|
|
|
|
it("should initialize with welcome screen and hide once user interacts", async () => {
|
|
expect(document.querySelector(".welcome-screen-center")).toMatchSnapshot();
|
|
UI.clickTool("rectangle");
|
|
expect(document.querySelector(".welcome-screen-center")).toBeNull();
|
|
});
|
|
});
|