Skip to content

Commit

Permalink
fix main entry
Browse files Browse the repository at this point in the history
  • Loading branch information
dutu committed Apr 25, 2023
1 parent 58586a6 commit 1184da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/package.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const packageJSON = require('../package.json');

describe('package.json', () => {
it('should have the correct "main" entry for CommonJS', () => {
expect(packageJSON.main).to.equal('dist/cjs/poloniex.cjs');
expect(packageJSON.main).to.equal('./dist/cjs/poloniex.cjs');
});

it('should have the correct "module" entry for ESM', () => {
Expand Down

0 comments on commit 1184da4

Please sign in to comment.