Skip to content

Commit

Permalink
Add dummy test to preserve jasmine/standardx functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
AshGDS committed Jul 4, 2024
1 parent 5ca6dae commit c6171ef
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions spec/javascripts/dummy-test.spec.js
Original file line number Diff line number Diff line change
@@ -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)
})
})

0 comments on commit c6171ef

Please sign in to comment.