mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
40 lines
878 B
JavaScript
40 lines
878 B
JavaScript
|
import { suite } from 'uvu';
|
||
|
import * as assert from 'uvu/assert';
|
||
|
import { createRuntime } from '../lib/runtime.js';
|
||
|
import { loadConfig } from '../lib/config.js';
|
||
|
import { doc } from './test-utils.js';
|
||
|
|
||
|
const React = suite('React Components');
|
||
|
|
||
|
let runtime;
|
||
|
|
||
|
React.before(async () => {
|
||
|
const astroConfig = await loadConfig(new URL('./fixtures/react-component', import.meta.url).pathname);
|
||
|
|
||
|
const logging = {
|
||
|
level: 'error',
|
||
|
dest: process.stderr
|
||
|
};
|
||
|
|
||
|
try {
|
||
|
runtime = await createRuntime(astroConfig, logging);
|
||
|
} catch(err) {
|
||
|
console.error(err);
|
||
|
throw err;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
React.after(async () => {
|
||
|
await runtime.shutdown();
|
||
|
});
|
||
|
|
||
|
React('Can load hmx page', async () => {
|
||
|
const result = await runtime.load('/');
|
||
|
|
||
|
assert.equal(result.statusCode, 200);
|
||
|
|
||
|
const $ = doc(result.contents);
|
||
|
assert.equal($('h2').text(), 'Hello world!');
|
||
|
});
|
||
|
|
||
|
React.run();
|