cc1a318c41
Svelte component resolution wasn't handled correctly during the build. Note that in the future we need to consolidate a "framework" API, so this stuff is not sprinkled throughout the codebase.
59 lines
No EOL
1.4 KiB
JavaScript
59 lines
No EOL
1.4 KiB
JavaScript
import { fileURLToPath } from 'url';
|
|
import { build as astroBuild } from '../lib/build.js';
|
|
import { loadConfig } from '../lib/config.js';
|
|
import { createRuntime } from '../lib/runtime.js';
|
|
import * as assert from 'uvu/assert';
|
|
/** setup fixtures for tests */
|
|
export function setup(Suite, fixturePath) {
|
|
let runtime, setupError;
|
|
|
|
Suite.before(async (context) => {
|
|
const astroConfig = await loadConfig(fileURLToPath(new URL(fixturePath, import.meta.url)));
|
|
|
|
const logging = {
|
|
level: 'error',
|
|
dest: process.stderr,
|
|
};
|
|
|
|
try {
|
|
runtime = await createRuntime(astroConfig, { logging });
|
|
} catch (err) {
|
|
console.error(err);
|
|
setupError = err;
|
|
}
|
|
|
|
context.runtime = runtime;
|
|
});
|
|
|
|
Suite.after(async () => {
|
|
(await runtime) && runtime.shutdown();
|
|
});
|
|
|
|
Suite('No errors creating a runtime', () => {
|
|
assert.equal(setupError, undefined);
|
|
});
|
|
}
|
|
|
|
export function setupBuild(Suite, fixturePath) {
|
|
let build, setupError;
|
|
|
|
Suite.before(async (context) => {
|
|
const astroConfig = await loadConfig(fileURLToPath(new URL(fixturePath, import.meta.url)));
|
|
|
|
const logging = {
|
|
level: 'error',
|
|
dest: process.stderr,
|
|
};
|
|
|
|
build = (...args) => astroBuild(astroConfig, ...args);
|
|
context.build = build;
|
|
});
|
|
|
|
Suite.after(async () => {
|
|
// Shutdown i guess.
|
|
});
|
|
|
|
Suite('No errors creating a runtime', () => {
|
|
assert.equal(setupError, undefined);
|
|
});
|
|
} |