astro/packages/create-astro/test/create-astro.test.js
Drew Powers a0055bd985
Create astro fixes (#267)
* Remove create-astro from workspace

* Improve contrast ratio

* Swap blank template for blog template

* Remove counter components from blog template

* Use `latest` astro version
2021-05-28 10:06:22 -06:00

42 lines
1.4 KiB
JavaScript

import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
import { suite } from 'uvu';
import execa from 'execa';
import del from 'del';
import * as assert from 'uvu/assert';
const CreateAstro = suite('npm init astro');
const cwd = fileURLToPath(path.dirname(import.meta.url));
const templates = fs.readdirSync(path.join(cwd, '..', 'src', 'templates'));
CreateAstro.before(async () => {
const fixturesDir = path.join(cwd, 'fixtures');
await del(fixturesDir);
await fs.promises.mkdir(fixturesDir);
});
for (const template of templates) {
CreateAstro(template, async () => {
const { stdout } = await execa('../../create-astro.js', [`./${template}`, '--template', template, '--skip-install'], { cwd: path.join(cwd, 'fixtures') });
// test: path should formatted as './{dirName}'
assert.not.match(stdout, '././');
const DOES_HAVE = ['.gitignore', 'package.json', 'public', 'src'];
const DOES_NOT_HAVE = ['_gitignore', 'meta.json', 'node_modules', 'yarn.lock'];
// test: template contains essential files & folders
for (const file of DOES_HAVE) {
assert.ok(fs.existsSync(path.join(cwd, template, file)), `has ${file}`);
}
// test: template DOES NOT contain files supposed to be stripped away
for (const file of DOES_NOT_HAVE) {
assert.not.ok(fs.existsSync(path.join(cwd, template, file)), `does not have ${file}`);
}
});
}
CreateAstro.run();