Skip to content

Commit

Permalink
Make BCD tests work.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmedley committed Mar 23, 2024
1 parent ca0a222 commit be5e8fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"help": "node app_Help.js",
"interface": "node app_Manual.js interface",
"test": "mocha",
"test-brk": "mocha --inspect-brk",
"report": "node app_Burner.js",
"show-versions": "node app_UpdateData.js show",
"sv": "node app_UpdateData.js show",
Expand Down
2 changes: 1 addition & 1 deletion test/bcd.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('BCD', () => {
describe('getBrowsers()', () => {
it('Confirms that the key \'Event\' returns 14 browsers', () => {
const browsers = bcd.getBrowsers('Event');
assert.strictEqual(browsers.length, 14);
assert.strictEqual(browsers.length, 15);
});
it('Confirms that the key \'Burnable\' returns null', () => {
const browsers = bcd.getBrowsers('Burnable');
Expand Down

0 comments on commit be5e8fe

Please sign in to comment.