fix(core): update

This commit is contained in:
2022-07-24 12:45:29 +02:00
parent af12f068aa
commit 3e5121171a
10 changed files with 2935 additions and 18982 deletions

View File

@ -1,13 +1,13 @@
import * as plugins from './smartexpect.plugins';
import * as plugins from './smartexpect.plugins.js';
import { Assertion } from './smartexpect.classes.assertion';
import { Assertion } from './smartexpect.classes.assertion.js';
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;
}
};