Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jul 28, 2024
1 parent 33165b5 commit 4688513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/es-module/test-require-as-esm-interop.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const assert = require('assert');
assert.strictEqual(require('../fixtures/cjsesm/dep.js'), 'cjs');
assert.strictEqual(require('../fixtures/cjsesm/index.js'), 'cjs');

// Now we have ESM conversions of these dependencies, using __cjsModule,
// Now we have ESM conversions of these dependencies, using __cjsModule,
// that behave equivalently under require(esm) despite the custom string import:
assert.strictEqual(require('../fixtures/cjsesm/dep.mjs'), 'cjs');
assert.strictEqual(require('../fixtures/cjsesm/index.mjs'), 'cjs');
Expand Down

0 comments on commit 4688513

Please sign in to comment.