Skip to content

Commit

Permalink
Fix constructor keyword test
Browse files Browse the repository at this point in the history
  • Loading branch information
cgewecke committed Apr 26, 2022
1 parent d4e8536 commit 29c0fdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/units/conditional.js
Expand Up @@ -5,7 +5,7 @@ const client = require('ganache-cli');
const Coverage = require('./../../lib/coverage');
const Api = require('./../../lib/api')

describe.only('ternary conditionals', () => {
describe('ternary conditionals', () => {
let coverage;
let api;

Expand Down
2 changes: 1 addition & 1 deletion test/units/function.js
Expand Up @@ -107,7 +107,7 @@ describe('function declarations', () => {
});
assert.deepEqual(mapping[util.filePath].b, {});
assert.deepEqual(mapping[util.filePath].s, {
1: 2, 2: 1
1: 1,
});
assert.deepEqual(mapping[util.filePath].f, {
1: 2,
Expand Down

0 comments on commit 29c0fdd

Please sign in to comment.