jsOMS/tests/Account/AccountTypeTest.js
Dennis Eichhorn d2e2bf97df general fixes
2024-04-19 02:08:38 +00:00

21 lines
476 B
JavaScript
Executable File

import { AccountType } from '../../Account/AccountType.js';
describe('AccountTypeTest', function ()
{
'use strict';
describe('testEnum', function ()
{
it('Testing amount of enums', function ()
{
expect(Object.keys(AccountType).length).toBe(2);
});
it('Testing values of enums', function ()
{
expect(AccountType.USER).toBe(0);
expect(AccountType.GROUP).toBe(1);
});
});
});