fix(core): update

This commit is contained in:
2021-08-12 23:35:39 +02:00
parent b584978287
commit 93153baa95
10 changed files with 24627 additions and 1120 deletions

View File

@ -1,9 +1,10 @@
import { tap, expect } from '@pushrocks/tapbundle';
import * as smartsystem from '../ts/index';
import { systeminformation } from '../ts/smartsystem.plugins';
let smartsystemInstance: smartsystem.Smartsystem;
tap.test('should create a smartsystem instance', async tools => {
tap.test('should create a smartsystem instance', async (tools) => {
smartsystemInstance = new smartsystem.Smartsystem();
expect(smartsystemInstance).to.be.instanceOf(smartsystem.Smartsystem);
});