1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/lib/services/plugins/utils/validatePluginPlatforms.test.ts

17 lines
503 B
TypeScript

import validatePluginPlatforms from './validatePluginPlatforms';
describe('validatePluginPlatforms', () => {
test.each([
[['mobile', 'desktop'], true],
['not-an-array', false],
[[3, 4, 5], false],
])('should throw when given an invalid list of supported plugin platforms (case %#)', (platforms: any, shouldSupport) => {
const callback = () => validatePluginPlatforms(platforms);
if (shouldSupport) {
expect(callback).not.toThrow();
} else {
expect(callback).toThrow();
}
});
});