mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
[ci] npm run format
This commit is contained in:
parent
72d9ece6db
commit
3adb9ea87c
2 changed files with 2 additions and 2 deletions
|
@ -503,7 +503,7 @@ export async function codegen(ast: Ast, { compileOptions, filename }: CodeGenOpt
|
||||||
components: {},
|
components: {},
|
||||||
css: [],
|
css: [],
|
||||||
importExportStatements: new Set(),
|
importExportStatements: new Set(),
|
||||||
dynamicImports: new Map()
|
dynamicImports: new Map(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const { script, componentPlugins } = compileModule(ast.module, state, compileOptions);
|
const { script, componentPlugins } = compileModule(ast.module, state, compileOptions);
|
||||||
|
|
|
@ -10,7 +10,7 @@ setup(Expressions, './fixtures/astro-expr');
|
||||||
Expressions('Can load page', async ({ runtime }) => {
|
Expressions('Can load page', async ({ runtime }) => {
|
||||||
const result = await runtime.load('/');
|
const result = await runtime.load('/');
|
||||||
|
|
||||||
console.log(result)
|
console.log(result);
|
||||||
assert.equal(result.statusCode, 200);
|
assert.equal(result.statusCode, 200);
|
||||||
console.log(result.contents);
|
console.log(result.contents);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue