[ci] format
This commit is contained in:
parent
c36527f46d
commit
1325fe90fc
9 changed files with 18 additions and 19 deletions
|
@ -269,7 +269,7 @@ describe('CSS', function () {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('resolves CSS in public/', async () => {
|
||||
|
|
|
@ -98,5 +98,4 @@ describe('astro cli', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
|
|
@ -19,7 +19,7 @@ describe('<Debug />', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('Works in markdown pages', async () => {
|
||||
|
|
|
@ -15,7 +15,7 @@ describe('Development Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('200 when loading /', async () => {
|
||||
|
@ -56,7 +56,7 @@ describe('Development Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('200 when loading /', async () => {
|
||||
|
@ -92,7 +92,7 @@ describe('Development Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -138,7 +138,7 @@ describe('Development Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -184,7 +184,7 @@ describe('Development Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('200 when loading /home.json', async () => {
|
||||
|
|
|
@ -26,7 +26,7 @@ describe('Preview Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await previewServer.stop());
|
||||
await previewServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -81,7 +81,7 @@ describe('Preview Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await previewServer.stop());
|
||||
await previewServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -140,7 +140,7 @@ describe('Preview Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await previewServer.stop());
|
||||
await previewServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -204,7 +204,7 @@ describe('Preview Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await previewServer.stop());
|
||||
await previewServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -262,7 +262,7 @@ describe('Preview Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await previewServer.stop());
|
||||
await previewServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -324,7 +324,7 @@ describe('Preview Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await previewServer.stop());
|
||||
await previewServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
@ -386,7 +386,7 @@ describe('Preview Routing', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await previewServer.stop());
|
||||
await previewServer.stop();
|
||||
});
|
||||
|
||||
it('404 when loading /', async () => {
|
||||
|
|
|
@ -85,7 +85,7 @@ describe('React Components', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('scripts proxy correctly', async () => {
|
||||
|
|
|
@ -14,7 +14,7 @@ describe('Sass', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
// TODO: Sass cannot be found on macOS for some reason... Vite issue?
|
||||
|
|
|
@ -38,7 +38,7 @@ describe('Svelte component', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('scripts proxy correctly', async () => {
|
||||
|
|
|
@ -53,7 +53,7 @@ describe('Vue component', () => {
|
|||
});
|
||||
|
||||
after(async () => {
|
||||
(await devServer.stop());
|
||||
await devServer.stop();
|
||||
});
|
||||
|
||||
it('scripts proxy correctly', async () => {
|
||||
|
|
Loading…
Reference in a new issue