[ci] format

This commit is contained in:
matthewp 2022-09-12 18:43:54 +00:00 committed by fredkbot
parent 16113c3ae2
commit d614be4900
3 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ import { preload, ssr } from '../core/render/dev/index.js';
import { RouteCache } from '../core/render/route-cache.js'; import { RouteCache } from '../core/render/route-cache.js';
import { createRequest } from '../core/request.js'; import { createRequest } from '../core/request.js';
import { createRouteManifest, matchAllRoutes } from '../core/routing/index.js'; import { createRouteManifest, matchAllRoutes } from '../core/routing/index.js';
import { createSafeError, resolvePages } from '../core/util.js'; import { resolvePages } from '../core/util.js';
import notFoundTemplate, { subpathNotUsedTemplate } from '../template/4xx.js'; import notFoundTemplate, { subpathNotUsedTemplate } from '../template/4xx.js';
interface AstroPluginOptions { interface AstroPluginOptions {

View file

@ -16,7 +16,7 @@ describe('Errors in JavaScript', () => {
devServer = await fixture.startDevServer(); devServer = await fixture.startDevServer();
}); });
after(async() => { after(async () => {
await devServer.stop(); await devServer.stop();
}); });