Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Commit

Permalink
addressing last round of PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: bfitzpat@redhat.com <bfitzpat@redhat.com>
  • Loading branch information
bfitzpat committed Aug 18, 2020
1 parent 86e1d27 commit 71f2964
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ suite('Extension Test Suite', () => {
done();
});

test('by default, didact setting to open on startup should be false', async function (done) {
test('by default, didact setting to open on startup should be false', function () {
const openAtStartup : boolean = getOpenAtStartupSetting();
console.log(`openAtStartup = ${openAtStartup}`);
if (openAtStartup === true) {
if (openAtStartup) {
assert.fail('Open by default setting should be false by default');
} else {
assert.ok('Open by Default setting is correctly set to false by default.');
}
done();
});
});

0 comments on commit 71f2964

Please sign in to comment.