fix(core): update

This commit is contained in:
2022-01-21 03:33:24 +01:00
parent 1fbc9b6001
commit 14ab9ee908
6 changed files with 150 additions and 31 deletions

View File

@ -1,3 +1,13 @@
import * as plugins from './smartexpect.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
import { Assertion } from './smartexpect.classes.assertion';
export const expect = (baseArg: any) => {
const assertion = new Assertion(baseArg, 'sync');
return assertion;
}
export const expectAsync = (baseArg: any) => {
const assertion = new Assertion(baseArg, 'async');
return assertion;
}