Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
Use deepEqual in test
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Oct 6, 2018
1 parent 0b62100 commit 8accd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Expand Up @@ -46,7 +46,7 @@ describe('rollup-plugin-replace', () => {
});

await bundle.generate({ format: 'es' });
assert.equal(valuesMap.ANSWER, '42');
assert.deepEqual(valuesMap, {ANSWER: '42'});
});

it('allows replacement to be a function', async () => {
Expand Down

0 comments on commit 8accd94

Please sign in to comment.