Files
cgm-remote-monitor/tests/fail.test.js
T
Sulka HaroandGitHub 5bc6799e48 GitHub actions build (#5168)
* Run tests using GitHub Actions

* Node 10

* Test CI fails

* Use npm to run tests

* Fix package json to run tests

* Enable v3 TEST api for both development env and CI

* Run CI on both Node 10 and 12

* Allow downgrading Mongo
2019-11-10 21:57:49 +00:00

15 lines
249 B
JavaScript

'use strict';
require('should');
// This test is included just so we have an easy to template to intentionally cause
// builds to fail
describe('fail', function ( ) {
it('should not fail', function () {
true.should.equal(true);
});
});