* test: add web helpers tests * fix: coverage report * test: add more tests * test: add more generated tests * chore: add more tests * test: add more tests
8 lines
237 B
TypeScript
8 lines
237 B
TypeScript
|
|
|
|
import { useExtensions } from './index'
|
|
|
|
test('testUseExtensionsMissingPath', () => {
|
|
expect(() => useExtensions(undefined as any)).toThrowError('A path to the extensions folder is required to use extensions')
|
|
})
|