This repository has been archived on 2021-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
TaskBoard/test/app/shared/constants.spec.ts
2020-06-27 19:16:31 -04:00

19 lines
346 B
TypeScript

import { Constants } from 'src/app/shared/constants';
describe('Constants', () => {
let constants: any;
beforeEach(() => {
constants = new Constants();
});
it('has a VERSION', () => {
expect(constants.VERSION).toEqual('1.0.2');
});
it('has a TOKEN', () => {
expect(constants.TOKEN).toEqual('taskboard.jwt');
});
})