astro/packages/create-astro/test/external.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
668 B
JavaScript
Raw Normal View History

import assert from 'assert';
import { execa } from 'execa';
import { FIXTURES_URL } from './helpers.js';
import { existsSync } from 'fs';
async function run(outdir, template) {
//--template cassidoo/shopify-react-astro
await execa('../../create-astro.mjs', [outdir, '--template', template, '--force-overwrite'], {
cwd: FIXTURES_URL.pathname,
});
}
2021-07-07 20:10:09 +00:00
const testCases = [['shopify', 'cassidoo/shopify-react-astro']];
async function tests() {
2021-07-07 20:10:09 +00:00
for (let [dir, tmpl] of testCases) {
await run(dir, tmpl);
const outPath = new URL('' + dir, FIXTURES_URL);
assert.ok(existsSync(outPath));
}
}
2021-07-07 20:10:09 +00:00
tests().catch((err) => {
console.error(err);
process.exit(1);
2021-07-07 20:10:09 +00:00
});