We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d7c273 commit 1f67ce2Copy full SHA for 1f67ce2
1 file changed
test/lib/models/user_info.js
@@ -9,7 +9,9 @@ describe('User info model', () => {
9
testModel({
10
model: UserInfo,
11
orderedFields: [
12
- 'id', 'email', 'username', null, null, null, null, 'timezone'
+ 'id', 'email', 'username', null, null, null, null, 'timezone',
13
+ null, null, null, null, null, null, null, null, null, null, null,
14
+ null, null, 'isPaperTradeEnabled'
15
]
16
})
17
@@ -19,7 +21,8 @@ describe('User info model', () => {
19
21
id: new Array(...(new Array(5))).map(() => Math.random()),
20
22
email: ['test@test.com', 'what@testing.com', 'really@nope.com'],
23
username: ['not', 'today', 'man', 'but', 'maybe', 'tomorrow'],
- timezone: ['all', 'over', 'the', 'world', 'vim', 'and', 'all']
24
+ timezone: ['all', 'over', 'the', 'world', 'vim', 'and', 'all'],
25
+ isPaperTradeEnabled: [true, false]
26
}
27
28
0 commit comments