Skip to content

Commit

Permalink
test: fixing lint
Browse files Browse the repository at this point in the history
fix lint
  • Loading branch information
italojs committed Jun 1, 2022
1 parent 0ab5e1f commit f4f3f34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-source-map-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,17 @@ const { readFileSync } = require('fs');
assert.notStrictEqual(payload.sources, sourceMap.payload.sources);
}

// findEntry() must return empty object instead error when
// findEntry() must return empty object instead error when
// receive a malformed mappings.
{
const payload = JSON.parse(readFileSync(
require.resolve('../fixtures/source-map/disk.map'), 'utf8'
));
payload.mappings = ";;;;;;;;;"
payload.mappings = ';;;;;;;;;';

const sourceMap = new SourceMap(payload);
const result = sourceMap.findEntry(0, 5);
assert.strictEqual(typeof result, "object");
assert.strictEqual(typeof result, 'object');
assert.strictEqual(Object.keys(result).length, 0);
}

Expand Down

0 comments on commit f4f3f34

Please sign in to comment.