Download this file

test.js    10 lines (7 with data), 168 Bytes

1
2
3
4
5
6
7
8
9
'use strict';
var expect = require('chai').expect;
describe('the backend tests', function() {
it('should work', function() {
expect(true).to.be.true;
});
});