mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
fc21a3c306
* chore(@astrojs/node): use Node.js for testing * revert file * address feedback * feedback * Run tests in a single process (#9823) * Run tests in a single process * Make test less flaky * chore: remove module --------- Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
32 lines
823 B
JavaScript
32 lines
823 B
JavaScript
import * as assert from 'node:assert/strict';
|
|
import { describe, it, before, after } from 'node:test';
|
|
import nodejs from '../dist/index.js';
|
|
import { loadFixture } from './test-utils.js';
|
|
import * as cheerio from 'cheerio';
|
|
|
|
describe('Errors', () => {
|
|
let fixture;
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: './fixtures/errors/',
|
|
output: 'server',
|
|
adapter: nodejs({ mode: 'standalone' }),
|
|
});
|
|
await fixture.build();
|
|
});
|
|
let devPreview;
|
|
|
|
before(async () => {
|
|
devPreview = await fixture.preview();
|
|
});
|
|
after(async () => {
|
|
await devPreview.stop();
|
|
});
|
|
it('when mode is standalone', async () => {
|
|
const res = await fixture.fetch('/in-stream');
|
|
const html = await res.text();
|
|
const $ = cheerio.load(html);
|
|
|
|
assert.equal($('p').text().trim(), 'Internal server error');
|
|
});
|
|
});
|