mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Factor out collaboration code (#2313)
Co-authored-by: Lipis <lipiridis@gmail.com> Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
parent
d8a0dc3b4d
commit
e617ccc252
41 changed files with 2250 additions and 2018 deletions
|
@ -1,6 +1,6 @@
|
|||
import React from "react";
|
||||
import { render, waitFor } from "./test-utils";
|
||||
import App from "../components/App";
|
||||
import ExcalidrawApp from "../excalidraw-app";
|
||||
import { API } from "./helpers/api";
|
||||
import { MIME_TYPES } from "../constants";
|
||||
import { LibraryItem } from "../types";
|
||||
|
@ -8,9 +8,9 @@ import { LibraryItem } from "../types";
|
|||
const { h } = window;
|
||||
|
||||
describe("library", () => {
|
||||
beforeEach(() => {
|
||||
beforeEach(async () => {
|
||||
h.library.resetLibrary();
|
||||
render(<App />);
|
||||
await render(<ExcalidrawApp />);
|
||||
});
|
||||
|
||||
it("import library via drag&drop", async () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue