Skip to content

Commit

Permalink
Fix describe import
Browse files Browse the repository at this point in the history
  • Loading branch information
brijeshb42 committed Jun 4, 2024
1 parent 227f79f commit 1f0e68c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { describe } from 'yargs';
import { expect } from 'chai';
import createExtendSxProp from '../../src/createExtendSxProp';

describe('createExtendSxProp', () => {
it('return the new copy of input', () => {
const original = { color: 'red' };
expect(createExtendSxProp()(original)).to.not.equal(original);
expect(createExtendSxProp()(original)).to.equal(original);
expect(createExtendSxProp()(original)).to.deep.equal({ color: 'red' });
});
});

0 comments on commit 1f0e68c

Please sign in to comment.