Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { flatten } from '../../utils/flatten';
describe('flatten', () => {
it('should flatten form values into flat form data', () => {
expect(
flatten({
hey: 'test',
array: [
{
test: '1',
test2: '2',
test3: null,
},
],
test: {
nested: {
test: 'bill',
test3: null,
},
},
test1: null,
}),
).toMatchSnapshot();
});
});