You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expect(check(["bob","john","bob"])).toEqual([{type: "arrayUnique",expected: ["bob"],actual: ["bob","john","bob"],message: "The 'bob,john,bob' value in '' field does not unique the 'bob' values."}]);
78
+
expect(check(["bob","john","bob","bob","john"])).toEqual([{type: "arrayUnique",expected: ["bob","john"],actual: ["bob","john","bob","bob","john"],message: "The 'bob,john,bob,bob,john' value in '' field does not unique the 'bob,john' values."}]);
79
+
expect(check([1,2,1,false,true,false])).toEqual([{type: "arrayUnique",expected: [1,false],actual: [1,2,1,false,true,false],message: "The '1,2,1,false,true,false' value in '' field does not unique the '1,false' values."}]);
0 commit comments