mirror of
https://github.com/outline/outline.git
synced 2026-05-04 00:20:45 -05:00
294521f162
Fixes #3899
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import Trello from "./Trello";
|
|
|
|
describe("Trello", () => {
|
|
const match = Trello.ENABLED[0];
|
|
|
|
test("to not be enabled for invalid urls", () => {
|
|
expect("https://trelloocom/c/c9d837d74182317".match(match)).toBe(null);
|
|
});
|
|
});
|