Skip to content

Commit 1e43054

Browse files
committed
chore: update tests
1 parent 02f1cfd commit 1e43054

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

test/excerpt.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest'
2-
import { createMarkdown } from '../src/markdown'
3-
import { resolveOptions } from '../src/options'
2+
import { createMarkdown } from '../src/core/markdown'
3+
import { resolveOptions } from '../src/core/options'
44

55
describe('excerpt', () => {
66
it('rendered excerpt', async () => {

test/frontmatterPreprocessor.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { readFile } from 'node:fs/promises'
22
import { describe, expect, it } from 'vitest'
3-
import { createMarkdown } from '../src/markdown'
4-
import { resolveOptions } from '../src/options'
3+
import { createMarkdown } from '../src/core/markdown'
4+
import { resolveOptions } from '../src/core/options'
55
import type { MetaProperty, ResolvedOptions } from '../src/types'
66

77
const frontmatterPreprocess: ResolvedOptions['frontmatterPreprocess'] = (fm) => {

test/transform.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest'
2-
import { createMarkdown } from '../src/markdown'
3-
import { resolveOptions } from '../src/options'
2+
import { createMarkdown } from '../src/core/markdown'
3+
import { resolveOptions } from '../src/core/options'
44

55
describe('transform', async () => {
66
const options = resolveOptions({})

0 commit comments

Comments
 (0)