Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Tests: Used fully objects instead of shorter strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Piechaczek committed Mar 2, 2017
1 parent 4783f38 commit 2e7eab7
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,18 @@ describe( 'Config', () => {
first: 1,
second: 2
},
'b.foo.first': 1,
'b.foo.second': 2
b: {
foo: {
first: 1,
second: 2,
}
}
};

const parameters = {
'a.third': 3,
a: {
third: 3
},
b: {
foo: {
first: 3,
Expand Down

0 comments on commit 2e7eab7

Please sign in to comment.