chore: remove unused tests

This commit is contained in:
Dominik Biedebach 2023-04-26 16:20:08 +02:00
parent ee496a0c6d
commit ee86f86560
2 changed files with 0 additions and 24 deletions

View File

@ -1,12 +0,0 @@
/// <reference types="cypress" />
import { Extension } from '@tiptap/core'
describe('configure extensions', () => {
it('should inherit config', () => {
const name = 'my-extension'
const extension = Extension.create({ name })
expect(extension.configure().config.name).to.eq(name)
})
})

View File

@ -1,12 +0,0 @@
/// <reference types="cypress" />
import { Mark } from '@tiptap/core'
describe('configure marks', () => {
it('should inherit config', () => {
const exitable = true
const mark = Mark.create({ exitable })
expect(mark.configure().config.exitable).to.eq(true)
})
})