utils/ts-src/arrayFromObj.test.ts
2022-10-21 12:08:36 +01:00

8 lines
198 B
TypeScript
Executable File

import { arrayFromObj } from './arrayFromObj';
test('It creates the proper array', function () {
const testObj = { a: 1, b: 2 };
expect(arrayFromObj(testObj, ['a', 'b'])).toEqual([1, 2]);
});