[ci] yarn format

This commit is contained in:
matthewp 2021-06-10 18:11:17 +00:00 committed by GitHub Actions
parent afa09ee9dc
commit cc5d000fdc
2 changed files with 3 additions and 3 deletions

View file

@ -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 }) => {

View file

@ -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;