@@ -8,57 +8,57 @@ const test = createTest(import.meta.url, {
88 ] ,
99} ) ;
1010
11- test ( 'cut usless functions: report' , ( t ) => {
11+ test ( 'cut useless functions: report' , ( t ) => {
1212 t . report ( 'block' , 'Useless functions should be avoided' ) ;
1313 t . end ( ) ;
1414} ) ;
1515
16- test ( 'cut usless functions: transform: block' , ( t ) => {
16+ test ( 'cut useless functions: transform: block' , ( t ) => {
1717 t . transform ( 'block' ) ;
1818 t . end ( ) ;
1919} ) ;
2020
21- test ( 'cut usless functions: transform: fn' , ( t ) => {
21+ test ( 'cut useless functions: transform: fn' , ( t ) => {
2222 t . transform ( 'fn' ) ;
2323 t . end ( ) ;
2424} ) ;
2525
26- test ( 'cut usless functions: no transform: method' , ( t ) => {
26+ test ( 'cut useless functions: no transform: method' , ( t ) => {
2727 t . noTransform ( 'method' ) ;
2828 t . end ( ) ;
2929} ) ;
3030
31- test ( 'cut usless functions: no transform: method block' , ( t ) => {
31+ test ( 'cut useless functions: no transform: method block' , ( t ) => {
3232 t . noTransform ( 'method-block' ) ;
3333 t . end ( ) ;
3434} ) ;
3535
36- test ( 'cut usless functions: no transform: different args' , ( t ) => {
36+ test ( 'cut useless functions: no transform: different args' , ( t ) => {
3737 t . noTransform ( 'different-args' ) ;
3838 t . end ( ) ;
3939} ) ;
4040
41- test ( 'cut usless functions: transform: curry' , ( t ) => {
41+ test ( 'cut useless functions: transform: curry' , ( t ) => {
4242 t . transform ( 'curry' ) ;
4343 t . end ( ) ;
4444} ) ;
4545
46- test ( 'cut usless functions: no transform: identifier' , ( t ) => {
46+ test ( 'cut useless functions: no transform: identifier' , ( t ) => {
4747 t . noTransform ( 'identifier' ) ;
4848 t . end ( ) ;
4949} ) ;
5050
51- test ( 'cut usless functions: no transform: identifier: block' , ( t ) => {
51+ test ( 'cut useless functions: no transform: identifier: block' , ( t ) => {
5252 t . noTransform ( 'identifier-block' ) ;
5353 t . end ( ) ;
5454} ) ;
5555
56- test ( 'cut usless functions: no transform: regexp' , ( t ) => {
56+ test ( 'cut useless functions: no transform: regexp' , ( t ) => {
5757 t . noTransform ( 'regexp' ) ;
5858 t . end ( ) ;
5959} ) ;
6060
61- test ( 'cut usless functions: transform: call' , ( t ) => {
61+ test ( 'cut useless functions: transform: call' , ( t ) => {
6262 t . transform ( 'call' ) ;
6363 t . end ( ) ;
6464} ) ;
0 commit comments