tiptap/tests/cypress/integration/extensions/link.spec.ts

12 lines
264 B
TypeScript
Raw Normal View History

2020-10-08 20:39:44 +08:00
/// <reference types="cypress" />
import { pasteRegex } from '@tiptap/extension-link'
describe('link regex test', () => {
it('paste regex matches url', () => {
expect('https://www.example.com/with-spaces?var=true&foo=bar+3').to.match(pasteRegex)
})
})