From c6171efaf66bc67081154050a9a77c311274d81b Mon Sep 17 00:00:00 2001 From: AshGDS <8880610+AshGDS@users.noreply.github.com> Date: Thu, 4 Jul 2024 09:24:52 +0100 Subject: [PATCH] Add dummy test to preserve jasmine/standardx functionality --- spec/javascripts/dummy-test.spec.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 spec/javascripts/dummy-test.spec.js diff --git a/spec/javascripts/dummy-test.spec.js b/spec/javascripts/dummy-test.spec.js new file mode 100644 index 00000000000..f74f944fc3a --- /dev/null +++ b/spec/javascripts/dummy-test.spec.js @@ -0,0 +1,10 @@ +/* +* We want to keep the jasmine/standardx functionality for tests in this repo, however they both crash if no JS spec files exist. +* Therefore we can keep this dummy test in. It can be removed if real tests are written for something in the future. +*/ + +describe('dummy test', function () { + it('accepts the truth', function () { + expect(true).toBe(true) + }) +})