summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/reserved_word_exports
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/npm/reserved_word_exports')
-rw-r--r--cli/tests/testdata/npm/reserved_word_exports/main.out141
-rw-r--r--cli/tests/testdata/npm/reserved_word_exports/main.ts3
2 files changed, 0 insertions, 144 deletions
diff --git a/cli/tests/testdata/npm/reserved_word_exports/main.out b/cli/tests/testdata/npm/reserved_word_exports/main.out
deleted file mode 100644
index 345a7012f..000000000
--- a/cli/tests/testdata/npm/reserved_word_exports/main.out
+++ /dev/null
@@ -1,141 +0,0 @@
-Download http://localhost:4545/npm/registry/@denotest/reserved-word-exports
-Download http://localhost:4545/npm/registry/@denotest/reserved-word-exports/1.0.0.tgz
-[Module: null prototype] {
- abstract: "abstract",
- arguments: "arguments",
- async: "async",
- await: "await",
- boolean: "boolean",
- break: "break",
- byte: "byte",
- case: "case",
- catch: "catch",
- char: "char",
- class: "class",
- const: "const",
- continue: "continue",
- debugger: "debugger",
- default: {
- abstract: "abstract",
- arguments: "arguments",
- async: "async",
- await: "await",
- boolean: "boolean",
- break: "break",
- byte: "byte",
- case: "case",
- catch: "catch",
- char: "char",
- class: "class",
- const: "const",
- continue: "continue",
- debugger: "debugger",
- default: "default",
- delete: "delete",
- do: "do",
- double: "double",
- else: "else",
- enum: "enum",
- eval: "eval",
- export: "export",
- extends: "extends",
- false: "false",
- final: "final",
- finally: "finally",
- float: "float",
- for: "for",
- function: "function",
- get: "get",
- goto: "goto",
- if: "if",
- implements: "implements",
- import: "import",
- in: "in",
- instanceof: "instanceof",
- int: "int",
- interface: "interface",
- let: "let",
- long: "long",
- mod: "mod",
- native: "native",
- new: "new",
- null: "null",
- package: "package",
- private: "private",
- protected: "protected",
- public: "public",
- return: "return",
- set: "set",
- short: "short",
- static: "static",
- super: "super",
- switch: "switch",
- synchronized: "synchronized",
- this: "this",
- throw: "throw",
- throws: "throws",
- transient: "transient",
- true: "true",
- try: "try",
- typeof: "typeof",
- var: "var",
- void: "void",
- volatile: "volatile",
- while: "while",
- with: "with",
- yield: "yield"
- },
- delete: "delete",
- do: "do",
- double: "double",
- else: "else",
- enum: "enum",
- eval: "eval",
- export: "export",
- extends: "extends",
- false: "false",
- final: "final",
- finally: "finally",
- float: "float",
- for: "for",
- function: "function",
- get: "get",
- goto: "goto",
- if: "if",
- implements: "implements",
- import: "import",
- in: "in",
- instanceof: "instanceof",
- int: "int",
- interface: "interface",
- let: "let",
- long: "long",
- mod: "mod",
- native: "native",
- new: "new",
- null: "null",
- package: "package",
- private: "private",
- protected: "protected",
- public: "public",
- return: "return",
- set: "set",
- short: "short",
- static: "static",
- super: "super",
- switch: "switch",
- synchronized: "synchronized",
- this: "this",
- throw: "throw",
- throws: "throws",
- transient: "transient",
- true: "true",
- try: "try",
- typeof: "typeof",
- var: "var",
- void: "void",
- volatile: "volatile",
- while: "while",
- with: "with",
- yield: "yield"
-}
diff --git a/cli/tests/testdata/npm/reserved_word_exports/main.ts b/cli/tests/testdata/npm/reserved_word_exports/main.ts
deleted file mode 100644
index 33cf183d3..000000000
--- a/cli/tests/testdata/npm/reserved_word_exports/main.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import * as exports from "npm:@denotest/reserved-word-exports";
-
-console.log(exports);