USING ASYNC / AWAIT
如果你的js运行环境支持async/await,你也可以像下面这样写异步测试。
beforeEach(async function() {
await db.clear();
await db.save([tobi, loki, jane]);
});
describe('#find()', function() {
it('responds with matching records', async function() {
const users = await db.find({ type: 'User' });
users.should.have.length(3);
});
});