mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
* 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
15 lines
249 B
JavaScript
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);
|
|
});
|
|
|
|
});
|