mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
15 lines
324 B
JavaScript
Executable File
15 lines
324 B
JavaScript
Executable File
import { LocalStorage } from '../../DataStorage/LocalStorage.js';
|
|
|
|
describe('LocalStorageTest', function ()
|
|
{
|
|
'use strict';
|
|
|
|
describe('testDefault', function ()
|
|
{
|
|
it('Testing default functionality', function ()
|
|
{
|
|
expect(LocalStorage.available()).toBeTruthy();
|
|
});
|
|
});
|
|
});
|