mirror of
https://github.com/outline/outline.git
synced 2026-01-06 19:19:59 -06:00
11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
import Descript from "./Descript";
|
|
|
|
describe("Descript", () => {
|
|
const match = Descript.ENABLED[0];
|
|
|
|
test("to not be enabled elsewhere", () => {
|
|
expect("https://shareddescript.com/view/c9d8".match(match)).toBe(null);
|
|
expect("https://share.descriptdcom/view/c9d8".match(match)).toBe(null);
|
|
});
|
|
});
|