From 3fa068400f76c8cba14b879af548cc7bec3ea5ce Mon Sep 17 00:00:00 2001 From: Tomer Aberbach Date: Sat, 25 Apr 2020 20:47:44 -0400 Subject: [PATCH] feat: add tests for new .mjs and .cjs file extensions --- testdata/expected/file.cjs | 22 ++++++++++++++++++++++ testdata/expected/file.mjs | 22 ++++++++++++++++++++++ testdata/initial/file.cjs | 6 ++++++ testdata/initial/file.mjs | 6 ++++++ 4 files changed, 56 insertions(+) create mode 100644 testdata/expected/file.cjs create mode 100644 testdata/expected/file.mjs create mode 100644 testdata/initial/file.cjs create mode 100644 testdata/initial/file.mjs diff --git a/testdata/expected/file.cjs b/testdata/expected/file.cjs new file mode 100644 index 0000000..932f11d --- /dev/null +++ b/testdata/expected/file.cjs @@ -0,0 +1,22 @@ +/** + * Copyright 2018 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +function dummy() { + console.log('hello world!'); +} + +module.exports = dummy + diff --git a/testdata/expected/file.mjs b/testdata/expected/file.mjs new file mode 100644 index 0000000..f2062fd --- /dev/null +++ b/testdata/expected/file.mjs @@ -0,0 +1,22 @@ +/** + * Copyright 2018 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +function dummy() { + console.log('hello world!'); +} + +export default dummy + diff --git a/testdata/initial/file.cjs b/testdata/initial/file.cjs new file mode 100644 index 0000000..9d3942b --- /dev/null +++ b/testdata/initial/file.cjs @@ -0,0 +1,6 @@ +function dummy() { + console.log('hello world!'); +} + +module.exports = dummy + diff --git a/testdata/initial/file.mjs b/testdata/initial/file.mjs new file mode 100644 index 0000000..acf5877 --- /dev/null +++ b/testdata/initial/file.mjs @@ -0,0 +1,6 @@ +function dummy() { + console.log('hello world!'); +} + +export default dummy +