We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7feded commit 8a5ba75Copy full SHA for 8a5ba75
1 file changed
spec/api/modern/1.0.js
@@ -11,13 +11,18 @@ module.exports = (server, version=defVersion) => {
11
'cell', 'id', 'picture', 'nat'
12
];
13
14
- const nats = [
+ let nats = [
15
'AU', 'BR', 'CA', 'CH',
16
'DE', 'DK', 'ES', 'FI',
17
'FR', 'GB', 'IE', 'IR',
18
'NL', 'NZ', 'TR', 'US'
19
20
21
+ // Include NO nat for versions 1.2+
22
+ if (version !== "1.0" && version !== "1.1") {
23
+ nats.push('NO');
24
+ }
25
+
26
// Include fields
27
describe(`Include fields`, () => {
28
for (let i = 0; i < 5; i++) {
0 commit comments