From c0230a22cde745c66beb3a90706ce5ae3efc76d1 Mon Sep 17 00:00:00 2001 From: Atreya Bain Date: Fri, 1 Aug 2025 20:49:08 +0100 Subject: [PATCH] [fix] test --- test_src/index.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_src/index.mjs b/test_src/index.mjs index 5461bbd..3e3bfb8 100644 --- a/test_src/index.mjs +++ b/test_src/index.mjs @@ -2,11 +2,11 @@ import fs,{readFile} from 'node:fs' import classnames from 'classnames' // import {neq} from 'semver' -import {sum, div,sad} from './arithmetic.cjs'; +import {sum, div} from './arithmetic.cjs'; readFile('a',(err)=>{ if(err){return;} }) -console.log(classnames('a', 'b', 'c',{a:5})); // $ExpectType string +console.log(classnames({a:true,b:true})); // $ExpectType string console.log(sum(2, 3)); // console.log(neq('1.0.0', '1.0.1')); // $ExpectType boolean \ No newline at end of file