@unleash/client-specification
Advanced tools
Comparing version 5.1.1 to 5.1.3
{ | ||
"name": "@unleash/client-specification", | ||
"version": "5.1.1", | ||
"version": "5.1.3", | ||
"description": "A collection of test specifications to guide client implementations in various languages", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -405,4 +405,41 @@ { | ||
] | ||
}, | ||
{ | ||
"name": "F9.inverted.IN", | ||
"description": "inverted IN", | ||
"enabled": true, | ||
"strategies": [ | ||
{ | ||
"name": "default", | ||
"parameters": {}, | ||
"constraints": [ | ||
{ | ||
"contextName": "someValue", | ||
"operator": "IN", | ||
"values": ["s1","s2"], | ||
"inverted": true | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "F10.inverted.NOT_IN", | ||
"description": "inverted NOT_IN", | ||
"enabled": true, | ||
"strategies": [ | ||
{ | ||
"name": "default", | ||
"parameters": {}, | ||
"constraints": [ | ||
{ | ||
"contextName": "someValue", | ||
"operator": "NOT_IN", | ||
"values": ["s1","s2"], | ||
"inverted": true | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
@@ -806,4 +843,24 @@ }, | ||
"expectedResult": true | ||
}, | ||
{ | ||
"description": "F9.inverted.IN should return false when present but inverted", | ||
"context": { | ||
"properties": { | ||
"someValue": "s1" | ||
} | ||
}, | ||
"toggleName": "F9.inverted.IN", | ||
"expectedResult": false | ||
}, | ||
{ | ||
"description": "F10.inverted.NOT_IN should return true when present but inverted", | ||
"context": { | ||
"properties": { | ||
"someValue": "s1" | ||
} | ||
}, | ||
"toggleName": "F10.inverted.NOT_IN", | ||
"expectedResult": true | ||
} | ||
] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
170469
4994