mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
20 lines
381 B
JavaScript
20 lines
381 B
JavaScript
|
const { expect } = require('chai');
|
||
|
|
||
|
describe('User (model)', () => {
|
||
|
before(async () => {
|
||
|
await User.create({
|
||
|
email: 'test@test.test',
|
||
|
password: 'test',
|
||
|
name: 'test',
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('#find()', () => {
|
||
|
it('should return 1 user', async () => {
|
||
|
const users = await User.find();
|
||
|
|
||
|
expect(users).to.have.lengthOf(1);
|
||
|
});
|
||
|
});
|
||
|
});
|