diff --git a/test/language/expressions/greater-than/bigint-and-symbol.js b/test/language/expressions/greater-than/bigint-and-symbol.js
new file mode 100644
index 0000000000000000000000000000000000000000..beb35e1c9376653dff7130bef4e1ad9d5c92fd27
--- /dev/null
+++ b/test/language/expressions/greater-than/bigint-and-symbol.js
@@ -0,0 +1,17 @@
+// Copyright (C) 2018 Caio Lima. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+description: Relational comparison of BigInt and Symbol values
+esid: sec-abstract-relational-comparison
+features: [BigInt, Symbol]
+---*/
+
+assert.throws(TypeError, function() {
+  3n > Symbol("2");
+}, "ToNumeric(Symbol) on RHS throws.");
+
+assert.throws(TypeError, function() {
+  Symbol("2") > 3n;
+}, "ToNumeric(Symbol) on LHS throws.");
+
diff --git a/test/language/expressions/less-than/bigint-and-symbol.js b/test/language/expressions/less-than/bigint-and-symbol.js
new file mode 100644
index 0000000000000000000000000000000000000000..b428218ea41561b2047b2289784fae1458a6eb23
--- /dev/null
+++ b/test/language/expressions/less-than/bigint-and-symbol.js
@@ -0,0 +1,19 @@
+// Copyright (C) 2018 Caio Lima. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+description: Relational comparison of BigInt and Symbol values
+esid: sec-abstract-relational-comparison
+features: [BigInt, Symbol]
+---*/
+
+function MyError() {}
+
+assert.throws(TypeError, function() {
+  3n < Symbol("2");
+}, "ToNumeric(Symbol) on RHS throws.");
+
+assert.throws(TypeError, function() {
+  Symbol("2") < 3n;
+}, "ToNumeric(Symbol) on LHS throws.");
+