From 92de6e00a368f9fc1d6f60d2fa9320bc52178f95 Mon Sep 17 00:00:00 2001 From: natemoo-re Date: Thu, 21 Jul 2022 17:39:31 +0000 Subject: [PATCH] [ci] format --- packages/astro/test/public-base-404.test.js | 104 ++++++++++---------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/packages/astro/test/public-base-404.test.js b/packages/astro/test/public-base-404.test.js index 79a86dbb7..bf98967cb 100644 --- a/packages/astro/test/public-base-404.test.js +++ b/packages/astro/test/public-base-404.test.js @@ -3,62 +3,62 @@ import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Public dev with base', () => { - /** @type {import('./test-utils').Fixture} */ - let fixture; - /** @type {import('./test-utils').DevServer} */ - let devServer; - let $; + /** @type {import('./test-utils').Fixture} */ + let fixture; + /** @type {import('./test-utils').DevServer} */ + let devServer; + let $; - before(async () => { - fixture = await loadFixture({ - root: './fixtures/public-base-404/', - site: 'http://example.com/', - base: '/blog' - }); - devServer = await fixture.startDevServer(); - }); + before(async () => { + fixture = await loadFixture({ + root: './fixtures/public-base-404/', + site: 'http://example.com/', + base: '/blog', + }); + devServer = await fixture.startDevServer(); + }); - it('200 when loading /@vite/client', async () => { - const response = await fixture.fetch('/@vite/client', { - redirect: 'manual' - }); - expect(response.status).to.equal(200); - const content = await response.text() - expect(content).to.contain('vite') - }); + it('200 when loading /@vite/client', async () => { + const response = await fixture.fetch('/@vite/client', { + redirect: 'manual', + }); + expect(response.status).to.equal(200); + const content = await response.text(); + expect(content).to.contain('vite'); + }); - it('200 when loading /blog/twitter.png', async () => { - const response = await fixture.fetch('/blog/twitter.png', { - redirect: 'manual' - }); - expect(response.status).to.equal(200); - }); + it('200 when loading /blog/twitter.png', async () => { + const response = await fixture.fetch('/blog/twitter.png', { + redirect: 'manual', + }); + expect(response.status).to.equal(200); + }); - it('custom 404 page when loading /blog/blog/', async () => { - const response = await fixture.fetch('/blog/blog/'); - const html = await response.text() - $ = cheerio.load(html); - expect($('h1').text()).to.equal('404'); - }); + it('custom 404 page when loading /blog/blog/', async () => { + const response = await fixture.fetch('/blog/blog/'); + const html = await response.text(); + $ = cheerio.load(html); + expect($('h1').text()).to.equal('404'); + }); - it('default 404 hint page when loading /', async () => { - const response = await fixture.fetch('/'); - expect(response.status).to.equal(404); - const html = await response.text() - $ = cheerio.load(html); - expect($('a').first().text()).to.equal('/blog/'); - }); + it('default 404 hint page when loading /', async () => { + const response = await fixture.fetch('/'); + expect(response.status).to.equal(404); + const html = await response.text(); + $ = cheerio.load(html); + expect($('a').first().text()).to.equal('/blog/'); + }); - it('default 404 page when loading /none/', async () => { - const response = await fixture.fetch('/none/', { - headers: { - accept: 'text/html,*/*' - } - }); - expect(response.status).to.equal(404); - const html = await response.text() - $ = cheerio.load(html); - expect($('h1').text()).to.equal('404: Not found'); - expect($('pre').text()).to.equal('Path: /none/'); - }); + it('default 404 page when loading /none/', async () => { + const response = await fixture.fetch('/none/', { + headers: { + accept: 'text/html,*/*', + }, + }); + expect(response.status).to.equal(404); + const html = await response.text(); + $ = cheerio.load(html); + expect($('h1').text()).to.equal('404: Not found'); + expect($('pre').text()).to.equal('Path: /none/'); + }); });