mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
test(core-presets): add coverage for invalid options.outputDir values
This commit is contained in:
parent
e5d30106f4
commit
7abe93e11c
@ -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
|
||||
);
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user