Files
outline/shared/editor/embeds/Tldraw.test.ts
2022-08-02 01:40:11 -07:00

11 lines
311 B
TypeScript

import Tldraw from "./Tldraw";
describe("Tldraw", () => {
const match = Tldraw.ENABLED[0];
test("to not be enabled elsewhere", () => {
expect("https://wwwwtldraw.com/r/c9d837d74182317".match(match)).toBe(null);
expect("https://www.tldrawwcom/r/c9d837d74182317".match(match)).toBe(null);
});
});