Skip to content

Commit

Permalink
fix(test): import html and md with ?raw
Browse files Browse the repository at this point in the history
Signed-off-by: Max <max@nextcloud.com>
  • Loading branch information
max-nextcloud committed Oct 13, 2024
1 parent 5e95f3b commit 0e272b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tests/nodes/Table.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import { createMarkdownSerializer } from '../../extensions/Markdown.js'

import markdownit from '../../markdownit/index.js'

import input from '../fixtures/tables/basic/table.md'
import output from '../fixtures/tables/basic/table.html'
import otherStructure from '../fixtures/tables/basic/table.structure.html'
import input from '../fixtures/tables/basic/table.md?raw'
import output from '../fixtures/tables/basic/table.html?raw'
import otherStructure from '../fixtures/tables/basic/table.structure.html?raw'

import handbook from '../fixtures/tables/handbook/handbook.html'
import handbookOut from '../fixtures/tables/handbook/handbook.out.html'
import handbook from '../fixtures/tables/handbook/handbook.html?raw'
import handbookOut from '../fixtures/tables/handbook/handbook.out.html?raw'
import { br, table, td, th, thead, tr, expectDocument } from '../testHelpers/builders.js'

describe('Table', () => {
Expand Down

0 comments on commit 0e272b9

Please sign in to comment.