[ci] yarn format
This commit is contained in:
parent
53d9cf5ec6
commit
637cf499fa
1 changed files with 11 additions and 11 deletions
|
@ -5,7 +5,7 @@ import { loadFixture } from './test-utils.js';
|
||||||
describe('Development Routing', () => {
|
describe('Development Routing', () => {
|
||||||
describe('No site config', () => {
|
describe('No site config', () => {
|
||||||
/** @type {import('./test-utils').Fixture} */
|
/** @type {import('./test-utils').Fixture} */
|
||||||
let fixture
|
let fixture;
|
||||||
/** @type {import('./test-utils').DevServer} */
|
/** @type {import('./test-utils').DevServer} */
|
||||||
let devServer;
|
let devServer;
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ describe('Development Routing', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
after(async () => {
|
after(async () => {
|
||||||
devServer && await devServer.stop();
|
devServer && (await devServer.stop());
|
||||||
});
|
});
|
||||||
|
|
||||||
it('200 when loading /', async () => {
|
it('200 when loading /', async () => {
|
||||||
|
@ -26,12 +26,12 @@ describe('Development Routing', () => {
|
||||||
it('200 when loading non-root page', async () => {
|
it('200 when loading non-root page', async () => {
|
||||||
const response = await fixture.fetch('/another');
|
const response = await fixture.fetch('/another');
|
||||||
expect(response.status).to.equal(200);
|
expect(response.status).to.equal(200);
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('No subpath used', () => {
|
describe('No subpath used', () => {
|
||||||
/** @type {import('./test-utils').Fixture} */
|
/** @type {import('./test-utils').Fixture} */
|
||||||
let fixture
|
let fixture;
|
||||||
/** @type {import('./test-utils').DevServer} */
|
/** @type {import('./test-utils').DevServer} */
|
||||||
let devServer;
|
let devServer;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ describe('Development Routing', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
after(async () => {
|
after(async () => {
|
||||||
devServer && await devServer.stop();
|
devServer && (await devServer.stop());
|
||||||
});
|
});
|
||||||
|
|
||||||
it('200 when loading /', async () => {
|
it('200 when loading /', async () => {
|
||||||
|
@ -52,12 +52,12 @@ describe('Development Routing', () => {
|
||||||
it('200 when loading non-root page', async () => {
|
it('200 when loading non-root page', async () => {
|
||||||
const response = await fixture.fetch('/another');
|
const response = await fixture.fetch('/another');
|
||||||
expect(response.status).to.equal(200);
|
expect(response.status).to.equal(200);
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('Subpath with trailing slash', () => {
|
describe('Subpath with trailing slash', () => {
|
||||||
/** @type {import('./test-utils').Fixture} */
|
/** @type {import('./test-utils').Fixture} */
|
||||||
let fixture
|
let fixture;
|
||||||
/** @type {import('./test-utils').DevServer} */
|
/** @type {import('./test-utils').DevServer} */
|
||||||
let devServer;
|
let devServer;
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ describe('Development Routing', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
after(async () => {
|
after(async () => {
|
||||||
devServer && await devServer.stop();
|
devServer && (await devServer.stop());
|
||||||
});
|
});
|
||||||
|
|
||||||
it('404 when loading /', async () => {
|
it('404 when loading /', async () => {
|
||||||
|
@ -93,7 +93,7 @@ describe('Development Routing', () => {
|
||||||
|
|
||||||
describe('Subpath without trailing slash', () => {
|
describe('Subpath without trailing slash', () => {
|
||||||
/** @type {import('./test-utils').Fixture} */
|
/** @type {import('./test-utils').Fixture} */
|
||||||
let fixture
|
let fixture;
|
||||||
/** @type {import('./test-utils').DevServer} */
|
/** @type {import('./test-utils').DevServer} */
|
||||||
let devServer;
|
let devServer;
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@ describe('Development Routing', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
after(async () => {
|
after(async () => {
|
||||||
devServer && await devServer.stop();
|
devServer && (await devServer.stop());
|
||||||
});
|
});
|
||||||
|
|
||||||
it('404 when loading /', async () => {
|
it('404 when loading /', async () => {
|
||||||
|
@ -126,4 +126,4 @@ describe('Development Routing', () => {
|
||||||
expect(response.status).to.equal(200);
|
expect(response.status).to.equal(200);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue