* 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
15 lines
499 B
TypeScript
15 lines
499 B
TypeScript
|
|
import { importHuggingFaceModelStageAtom } from './HuggingFace.atom';
|
|
import { importingHuggingFaceRepoDataAtom } from './HuggingFace.atom';
|
|
|
|
test('importHuggingFaceModelStageAtom should have initial value of NONE', () => {
|
|
const result = importHuggingFaceModelStageAtom.init;
|
|
expect(result).toBe('NONE');
|
|
});
|
|
|
|
|
|
test('importingHuggingFaceRepoDataAtom should have initial value of undefined', () => {
|
|
const result = importingHuggingFaceRepoDataAtom.init;
|
|
expect(result).toBeUndefined();
|
|
});
|