diff options
Diffstat (limited to 'js/src/tests/test262/harness/arrayContains.js')
-rw-r--r-- | js/src/tests/test262/harness/arrayContains.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/js/src/tests/test262/harness/arrayContains.js b/js/src/tests/test262/harness/arrayContains.js new file mode 100644 index 0000000000..95e13bdaaf --- /dev/null +++ b/js/src/tests/test262/harness/arrayContains.js @@ -0,0 +1,26 @@ +// Copyright (C) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Assert that the contents of an array contains another array as a slice or sub-array +includes: [arrayContains.js] +---*/ + +const willMatch = [0, 1, 2]; + +assert(arrayContains([0, 1, 2, 3], willMatch)); +assert(arrayContains([null, 0, 1, 2, 3], willMatch)); +assert(arrayContains([undefined, 0, 1, 2, 3], willMatch)); +assert(arrayContains([false, 0, 1, 2, 3], willMatch)); +assert(arrayContains([NaN, 0, 1, 2, 3], willMatch)); + +const willNotMatch = [1, 0, 2]; + +assert(!arrayContains([1, /* intentional hole */, 2], willNotMatch), '[1, /* intentional hole */, 2], willNotMatch)'); +assert(!arrayContains([1, null, 2], willNotMatch), '[1, null, 2], willNotMatch)'); +assert(!arrayContains([1, undefined, 2], willNotMatch), '[1, undefined, 2], willNotMatch)'); +assert(!arrayContains([1, false, 2], willNotMatch), '[1, false, 2], willNotMatch)'); +assert(!arrayContains([1, NaN, 2], willNotMatch), '[1, NaN, 2], willNotMatch)'); + +reportCompare(0, 0); |