[ci] yarn format
This commit is contained in:
parent
afa09ee9dc
commit
cc5d000fdc
2 changed files with 3 additions and 3 deletions
|
@ -7,8 +7,8 @@ const Basics = suite('Basic test');
|
|||
|
||||
setup(Basics, './fixtures/astro-basic', {
|
||||
runtimeOptions: {
|
||||
mode: 'development'
|
||||
}
|
||||
mode: 'development',
|
||||
},
|
||||
});
|
||||
|
||||
Basics('Can load page', async ({ runtime }) => {
|
||||
|
|
|
@ -24,7 +24,7 @@ export function setup(Suite, fixturePath, { runtimeOptions = {} } = {}) {
|
|||
|
||||
runtime = await createRuntime(astroConfig, {
|
||||
logging: { level: 'error', dest: process.stderr },
|
||||
...runtimeOptions
|
||||
...runtimeOptions,
|
||||
});
|
||||
|
||||
context.runtime = runtime;
|
||||
|
|
Loading…
Reference in a new issue