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

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();
});
});
});