mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
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);
|
||
|
});
|
||
|
});
|