16 lines
516 B
TypeScript
16 lines
516 B
TypeScript
import { readFileSync } from 'fs'
|
|
import path from 'path'
|
|
import { fileURLToPath } from 'url'
|
|
|
|
import type { Test } from '../int.spec.js'
|
|
|
|
const filename = fileURLToPath(import.meta.url)
|
|
const dirname = path.dirname(filename)
|
|
|
|
export const restExamplesTest1: Test = {
|
|
input: readFileSync(path.resolve(dirname, 'restExamples.input.mdx'), 'utf-8'),
|
|
rootChildren: JSON.parse(readFileSync(path.resolve(dirname, 'restExamples.output.json'), 'utf-8'))
|
|
.editorState.root.children,
|
|
convertFromEditorJSON: false,
|
|
}
|