[ci] format
This commit is contained in:
parent
4b092269c1
commit
a5df3f313e
2 changed files with 8 additions and 10 deletions
|
@ -174,10 +174,12 @@ class AstroBuilder {
|
|||
|
||||
private validateConfig() {
|
||||
const { config } = this.settings;
|
||||
|
||||
|
||||
// outDir gets blown away so it can't be the root.
|
||||
if(config.outDir.toString() === config.root.toString()) {
|
||||
throw new Error(`the outDir cannot be the root folder. Please build to a folder such as dist.`);
|
||||
if (config.outDir.toString() === config.root.toString()) {
|
||||
throw new Error(
|
||||
`the outDir cannot be the root folder. Please build to a folder such as dist.`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('outDir set to project root', async () => {
|
|||
fixture = await loadFixture({ root: './fixtures/dont-delete-me/' });
|
||||
try {
|
||||
await fixture.build();
|
||||
} catch(err) {
|
||||
} catch (err) {
|
||||
error = err;
|
||||
}
|
||||
});
|
||||
|
@ -24,13 +24,9 @@ describe('outDir set to project root', async () => {
|
|||
});
|
||||
|
||||
it('Files have not been deleted', async () => {
|
||||
const expectedFiles = [
|
||||
'package.json',
|
||||
'astro.config.mjs',
|
||||
'src/pages/index.astro'
|
||||
];
|
||||
const expectedFiles = ['package.json', 'astro.config.mjs', 'src/pages/index.astro'];
|
||||
|
||||
for(const rel of expectedFiles) {
|
||||
for (const rel of expectedFiles) {
|
||||
const root = new URL('./fixtures/dont-delete-me/', import.meta.url);
|
||||
const url = new URL('./' + rel, root);
|
||||
const stats = await fs.promises.stat(url);
|
||||
|
|
Loading…
Reference in a new issue