mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
1a68cecb11
To start server locally: npm run start-dev To execute tests: npm test
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
var assert = require('assert');
|
|
|
|
describe('The api', function () {
|
|
beforeEach(function () {
|
|
//
|
|
});
|
|
|
|
it('returns all toggles', function (done) {
|
|
done();
|
|
assert(true);
|
|
});
|
|
}); |