mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
wip: migrate to bun
This commit is contained in:
9
test/identity.spec.ts
Normal file
9
test/identity.spec.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import assert from 'node:assert';
|
||||
import identity from '../src/identity';
|
||||
|
||||
describe('identity', () => {
|
||||
it('should return the first argument given', () => {
|
||||
const object = { name: 'fred' };
|
||||
assert.strictEqual(identity(object), object);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user