summaryrefslogtreecommitdiffstats
path: root/tools/lint/eslint/eslint-plugin-mozilla/tests/use-console-createInstance.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lint/eslint/eslint-plugin-mozilla/tests/use-console-createInstance.js')
-rw-r--r--tools/lint/eslint/eslint-plugin-mozilla/tests/use-console-createInstance.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/tools/lint/eslint/eslint-plugin-mozilla/tests/use-console-createInstance.js b/tools/lint/eslint/eslint-plugin-mozilla/tests/use-console-createInstance.js
new file mode 100644
index 0000000000..bd7fe3a507
--- /dev/null
+++ b/tools/lint/eslint/eslint-plugin-mozilla/tests/use-console-createInstance.js
@@ -0,0 +1,41 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+// ------------------------------------------------------------------------------
+// Requirements
+// ------------------------------------------------------------------------------
+
+var rule = require("../lib/rules/use-console-createInstance");
+var RuleTester = require("eslint").RuleTester;
+
+const ruleTester = new RuleTester({ parserOptions: { ecmaVersion: "latest" } });
+
+// ------------------------------------------------------------------------------
+// Tests
+// ------------------------------------------------------------------------------
+
+ruleTester.run("use-console-createInstance", rule, {
+ valid: ['"resource://gre/modules/Foo.sys.mjs"'],
+ invalid: [
+ {
+ code: '"resource://gre/modules/Console.sys.mjs"',
+ errors: [
+ {
+ messageId: "useConsoleRatherThanModule",
+ data: { module: "Console.sys.mjs" },
+ },
+ ],
+ },
+ {
+ code: '"resource://gre/modules/Log.sys.mjs"',
+ errors: [
+ {
+ messageId: "useConsoleRatherThanModule",
+ data: { module: "Log.sys.mjs" },
+ },
+ ],
+ },
+ ],
+});