From ba38688dffd846a633ae2c076441927c864ffd5f Mon Sep 17 00:00:00 2001 From: Aryeh Leib Taurog Date: Tue, 1 Jan 2019 20:42:06 +0200 Subject: support tests/ with elm 0.19.0 With earlier elm versions, a separate package file is maintained for tests, which when properly configured enabled the compiler to find what it needed to compile the tests. Under elm 0.19, test dependencies are managed in the top-level package file, so `elm make` will fail on the tests. `elm-test make` is required in this case. See https://github.com/elm-explorations/test/issues/64 --- test/elm-test-files/oldapp/elm-package.json | 0 test/elm-test-files/oldapp/node_modules/.bin/elm | 0 test/elm-test-files/oldapp/node_modules/.bin/elm-test | 0 test/elm-test-files/oldapp/src/Main.elm | 0 test/elm-test-files/oldapp/tests/TestSuite.elm | 0 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 test/elm-test-files/oldapp/elm-package.json create mode 100644 test/elm-test-files/oldapp/node_modules/.bin/elm create mode 100644 test/elm-test-files/oldapp/node_modules/.bin/elm-test create mode 100644 test/elm-test-files/oldapp/src/Main.elm create mode 100644 test/elm-test-files/oldapp/tests/TestSuite.elm (limited to 'test/elm-test-files/oldapp') diff --git a/test/elm-test-files/oldapp/elm-package.json b/test/elm-test-files/oldapp/elm-package.json new file mode 100644 index 00000000..e69de29b diff --git a/test/elm-test-files/oldapp/node_modules/.bin/elm b/test/elm-test-files/oldapp/node_modules/.bin/elm new file mode 100644 index 00000000..e69de29b diff --git a/test/elm-test-files/oldapp/node_modules/.bin/elm-test b/test/elm-test-files/oldapp/node_modules/.bin/elm-test new file mode 100644 index 00000000..e69de29b diff --git a/test/elm-test-files/oldapp/src/Main.elm b/test/elm-test-files/oldapp/src/Main.elm new file mode 100644 index 00000000..e69de29b diff --git a/test/elm-test-files/oldapp/tests/TestSuite.elm b/test/elm-test-files/oldapp/tests/TestSuite.elm new file mode 100644 index 00000000..e69de29b -- cgit v1.2.3