From 1dc1c927a1c5be5fa69b689c70580e639849b53e Mon Sep 17 00:00:00 2001 From: jlenon7 Date: Sun, 7 Jan 2024 22:10:36 +0000 Subject: [PATCH] feat(bin): update methods call --- bin/test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/test.ts b/bin/test.ts index 1b6f596..7a0cb32 100644 --- a/bin/test.ts +++ b/bin/test.ts @@ -7,11 +7,10 @@ * file that was distributed with this source code. */ -import { Runner, assert, specReporter } from '@athenna/test' +import { Runner } from '@athenna/test' await Runner.setTsEnv() - .addPlugin(assert()) - .addReporter(specReporter()) + .addAssertPlugin() .addPath('tests/unit/**/*.ts') .setCliArgs(process.argv.slice(2)) .setGlobalTimeout(5000)