Skip to content

Commit

Permalink
chore: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
baiwusanyu-c committed Nov 24, 2023
1 parent a9b69de commit 1b4ff6d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions packages/compiler-vapor/__tests__/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ test('A single node containing dynamic content', async () => {
})

test('A single node containing dynamic content & text', async () => {
const { descriptor } = parse(singleRootSourceText, { compiler: CompilerVapor })
const { descriptor } = parse(singleRootSourceText, {
compiler: CompilerVapor,
})
const script = compileScript(descriptor, {
id: 'singleRootText.vue',
inlineTemplate: true,
Expand All @@ -37,7 +39,9 @@ test('A single node containing dynamic content & text', async () => {
})

test('A single node containing dynamic content & first', async () => {
const { descriptor } = parse(singleRootSourceFirst, { compiler: CompilerVapor })
const { descriptor } = parse(singleRootSourceFirst, {
compiler: CompilerVapor,
})
const script = compileScript(descriptor, {
id: 'singleRootFirst.vue',
inlineTemplate: true,
Expand All @@ -47,7 +51,9 @@ test('A single node containing dynamic content & first', async () => {
})

test('A single node containing dynamic content & last', async () => {
const { descriptor } = parse(singleRootSourceLast, { compiler: CompilerVapor })
const { descriptor } = parse(singleRootSourceLast, {
compiler: CompilerVapor,
})
const script = compileScript(descriptor, {
id: 'singleRootLast.vue',
inlineTemplate: true,
Expand Down

0 comments on commit 1b4ff6d

Please sign in to comment.