This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/models/User.test.js

11 lines
296 B
JavaScript
Raw Normal View History

/* eslint-disable flowtype/require-valid-file-annotation */
import { flushdb } from '../test/support';
import { buildUser } from '../test/factories';
2016-09-12 00:47:22 +00:00
beforeEach(flushdb);
2018-07-07 23:19:13 +00:00
it('should set JWT secret', async () => {
const user = await buildUser();
2016-09-12 00:47:22 +00:00
expect(user.getJwtToken()).toBeTruthy();
});