summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/strict-does-not-equals/bigint-and-string.js
blob: d2562ff7a1c08e55cf2bdc23c912f149c18cbd0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Strict inequality comparison of BigInt and String values
esid: sec-strict-equality-comparison
info: |
  1. If Type(x) is different from Type(y), return false.

features: [BigInt]
---*/
assert.sameValue(0n !== '', true, 'The result of (0n !== "") is true');
assert.sameValue('' !== 0n, true, 'The result of ("" !== 0n) is true');
assert.sameValue(0n !== '-0', true, 'The result of (0n !== "-0") is true');
assert.sameValue('-0' !== 0n, true, 'The result of ("-0" !== 0n) is true');
assert.sameValue(0n !== '0', true, 'The result of (0n !== "0") is true');
assert.sameValue('0' !== 0n, true, 'The result of ("0" !== 0n) is true');
assert.sameValue(0n !== '-1', true, 'The result of (0n !== "-1") is true');
assert.sameValue('-1' !== 0n, true, 'The result of ("-1" !== 0n) is true');
assert.sameValue(0n !== '1', true, 'The result of (0n !== "1") is true');
assert.sameValue('1' !== 0n, true, 'The result of ("1" !== 0n) is true');
assert.sameValue(0n !== 'foo', true, 'The result of (0n !== "foo") is true');
assert.sameValue('foo' !== 0n, true, 'The result of ("foo" !== 0n) is true');
assert.sameValue(1n !== '', true, 'The result of (1n !== "") is true');
assert.sameValue('' !== 1n, true, 'The result of ("" !== 1n) is true');
assert.sameValue(1n !== '-0', true, 'The result of (1n !== "-0") is true');
assert.sameValue('-0' !== 1n, true, 'The result of ("-0" !== 1n) is true');
assert.sameValue(1n !== '0', true, 'The result of (1n !== "0") is true');
assert.sameValue('0' !== 1n, true, 'The result of ("0" !== 1n) is true');
assert.sameValue(1n !== '-1', true, 'The result of (1n !== "-1") is true');
assert.sameValue('-1' !== 1n, true, 'The result of ("-1" !== 1n) is true');
assert.sameValue(1n !== '1', true, 'The result of (1n !== "1") is true');
assert.sameValue('1' !== 1n, true, 'The result of ("1" !== 1n) is true');
assert.sameValue(1n !== 'foo', true, 'The result of (1n !== "foo") is true');
assert.sameValue('foo' !== 1n, true, 'The result of ("foo" !== 1n) is true');
assert.sameValue(-1n !== '-', true, 'The result of (-1n !== "-") is true');
assert.sameValue('-' !== -1n, true, 'The result of ("-" !== -1n) is true');
assert.sameValue(-1n !== '-0', true, 'The result of (-1n !== "-0") is true');
assert.sameValue('-0' !== -1n, true, 'The result of ("-0" !== -1n) is true');
assert.sameValue(-1n !== '-1', true, 'The result of (-1n !== "-1") is true');
assert.sameValue('-1' !== -1n, true, 'The result of ("-1" !== -1n) is true');
assert.sameValue(-1n !== '-foo', true, 'The result of (-1n !== "-foo") is true');
assert.sameValue('-foo' !== -1n, true, 'The result of ("-foo" !== -1n) is true');

assert.sameValue(
  900719925474099101n !== '900719925474099101',
  true,
  'The result of (900719925474099101n !== "900719925474099101") is true'
);

assert.sameValue(
  '900719925474099101' !== 900719925474099101n,
  true,
  'The result of ("900719925474099101" !== 900719925474099101n) is true'
);

assert.sameValue(
  900719925474099102n !== '900719925474099101',
  true,
  'The result of (900719925474099102n !== "900719925474099101") is true'
);

assert.sameValue(
  '900719925474099101' !== 900719925474099102n,
  true,
  'The result of ("900719925474099101" !== 900719925474099102n) is true'
);

reportCompare(0, 0);