aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/importOne.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/jsimport/importOne.js')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/jsimport/importOne.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/importOne.js b/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/importOne.js
deleted file mode 100644
index 338c4e042f..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/jsimport/importOne.js
+++ /dev/null
@@ -1,13 +0,0 @@
-.import "importTwo.js" as ImportTwoJs
-.import "importThree.js" as ImportThreeJs
-
-function greetingString() {
- if (ImportTwoJs.greetingString().length > 0) {
- return ImportTwoJs.greetingString();
- }
- return ImportThreeJs.greetingString();
-}
-
-function importOneFunction() {
- return '1';
-}