Skip to content

Commit

Permalink
more test to cement current behaviour, #1396
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jun 8, 2016
1 parent d4a0503 commit d681654
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions extensions/vscode-api-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
"farboo.nested.config2": {
"type": "string",
"default": "Das Pferd frisst kein Reis."
},
"farboo.config4": {
"type": "string"
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions extensions/vscode-api-tests/src/workspace.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ suite('workspace-namespace', () => {

assert.ok(config.has('config0'));
assert.equal(config.get('config0'), true);
assert.equal(config.get('config4'), '');

assert.ok(config.has('nested.config1'));
assert.equal(config.get('nested.config1'), 42);
assert.ok(config.has('nested.config2'));
Expand Down

0 comments on commit d681654

Please sign in to comment.