mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 09:58:39 +00:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
import { Account } from '../Account/Account.js';
|
|
|
|
describe('AccountTest', function ()
|
|
{
|
|
"use strict";
|
|
|
|
describe('testDefault', function ()
|
|
{
|
|
it('Testing default functionality', function ()
|
|
{
|
|
let obj = new Account();
|
|
|
|
expect(obj.getId()).toBe(0);
|
|
});
|
|
});
|
|
});
|