mirror of
https://github.com/outline/outline.git
synced 2026-01-05 18:49:53 -06:00
10 lines
249 B
TypeScript
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);
|
|
});
|
|
});
|