854d0feb34
* Add support for React components. This adds support for react components via a new `extensions` config in astro.config.mjs. In the future we can extend this to do things like look at the import statements, as Snowpack does. * Fix the tests
40 lines
No EOL
878 B
JavaScript
40 lines
No EOL
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(); |