test(core-presets): add coverage for invalid options.outputDir values

This commit is contained in:
Oscar Dominguez 2021-02-20 02:23:48 +01:00
parent e5d30106f4
commit 7abe93e11c

View File

@ -160,4 +160,28 @@ describe.each([
TIMEOUT
);
});
describe.each([
['root directory /', '/', "Won't remove directory '/'. Check your outputDir!"],
['empty string ""', '', "Won't remove current directory. Check your outputDir!"],
])('Invalid outputDir must throw: %s', (_, outputDir, expectedErrorMessage) => {
const optionsWithInvalidDir = {
...options,
outputDir,
};
beforeEach(() => {
jest.clearAllMocks();
cache.clear();
});
it(
'production mode',
async () => {
expect.assertions(1);
await expect(buildStaticStandalone(optionsWithInvalidDir)).rejects.toThrow(
expectedErrorMessage
);
},
TIMEOUT
);
});
});