mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-13 17:59:01 +08:00
125 lines
2.2 KiB
TypeScript
125 lines
2.2 KiB
TypeScript
/// <reference types="cypress" />
|
|
|
|
import { Extension } from '@tiptap/core/src/Extension'
|
|
|
|
describe('extension options', () => {
|
|
it('should set options', () => {
|
|
const extension = Extension.create({
|
|
defaultOptions: {
|
|
foo: 1,
|
|
bar: 1,
|
|
},
|
|
})
|
|
|
|
expect(extension.options).to.deep.eq({
|
|
foo: 1,
|
|
bar: 1,
|
|
})
|
|
})
|
|
|
|
it('should pass through', () => {
|
|
const extension = Extension
|
|
.create({
|
|
defaultOptions: {
|
|
foo: 1,
|
|
bar: 1,
|
|
},
|
|
})
|
|
.extend()
|
|
.configure()
|
|
|
|
expect(extension.options).to.deep.eq({
|
|
foo: 1,
|
|
bar: 1,
|
|
})
|
|
})
|
|
|
|
it('should be configurable', () => {
|
|
const extension = Extension
|
|
.create({
|
|
defaultOptions: {
|
|
foo: 1,
|
|
bar: 1,
|
|
},
|
|
})
|
|
.configure({
|
|
bar: 2,
|
|
})
|
|
|
|
expect(extension.options).to.deep.eq({
|
|
foo: 1,
|
|
bar: 2,
|
|
})
|
|
})
|
|
|
|
it('should be extendable', () => {
|
|
const extension = Extension.create({
|
|
defaultOptions: {
|
|
foo: 1,
|
|
bar: 1,
|
|
},
|
|
})
|
|
|
|
const newExtension = extension.extend({
|
|
defaultOptions: {
|
|
...extension.options,
|
|
baz: 1,
|
|
},
|
|
})
|
|
|
|
expect(newExtension.options).to.deep.eq({
|
|
foo: 1,
|
|
bar: 1,
|
|
baz: 1,
|
|
})
|
|
})
|
|
|
|
it('should be overwritable', () => {
|
|
const extension = Extension
|
|
.create({
|
|
defaultOptions: {
|
|
foo: 1,
|
|
bar: 1,
|
|
},
|
|
})
|
|
.extend({
|
|
defaultOptions: {
|
|
baz: 1,
|
|
},
|
|
})
|
|
|
|
expect(extension.options).to.deep.eq({
|
|
baz: 1,
|
|
})
|
|
})
|
|
|
|
it('should configure nested objects', () => {
|
|
const extension = Extension
|
|
.create<{
|
|
foo: number[],
|
|
HTMLAttributes: Record<string, any>,
|
|
}>({
|
|
defaultOptions: {
|
|
foo: [1, 2, 3],
|
|
HTMLAttributes: {
|
|
class: 'foo',
|
|
},
|
|
},
|
|
})
|
|
.configure({
|
|
foo: [1],
|
|
HTMLAttributes: {
|
|
id: 'bar',
|
|
},
|
|
})
|
|
|
|
expect(extension.options).to.deep.eq({
|
|
foo: [1],
|
|
HTMLAttributes: {
|
|
class: 'foo',
|
|
id: 'bar',
|
|
},
|
|
})
|
|
})
|
|
})
|