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

10 lines
249 B
TypeScript

import Whimsical from "./Whimsical";
describe("Whimsical", () => {
const match = Whimsical.ENABLED[0];
test("to not be enabled for invalid urls", () => {
expect("https://whimsicallcom/a-c9d837d74182317".match(match)).toBe(null);
});
});