@@ -692,7 +692,7 @@ defineTest({
692
692
// ^
693
693
let completion = await document . completions ( { line : 0 , character : 23 } )
694
694
695
- expect ( completion ?. items . length ) . toBe ( 19236 )
695
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
696
696
} ,
697
697
} )
698
698
@@ -714,7 +714,7 @@ defineTest({
714
714
// ^
715
715
let completion = await document . completions ( { line : 0 , character : 22 } )
716
716
717
- expect ( completion ?. items . length ) . toBe ( 19236 )
717
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
718
718
} ,
719
719
} )
720
720
@@ -736,7 +736,7 @@ defineTest({
736
736
// ^
737
737
let completion = await document . completions ( { line : 0 , character : 31 } )
738
738
739
- expect ( completion ?. items . length ) . toBe ( 19236 )
739
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
740
740
} ,
741
741
} )
742
742
@@ -758,7 +758,7 @@ defineTest({
758
758
// ^
759
759
let completion = await document . completions ( { line : 0 , character : 26 } )
760
760
761
- expect ( completion ?. items . length ) . toBe ( 19236 )
761
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
762
762
} ,
763
763
} )
764
764
@@ -780,7 +780,7 @@ defineTest({
780
780
// ^
781
781
let completion = await document . completions ( { line : 0 , character : 12 } )
782
782
783
- expect ( completion ?. items . length ) . toBe ( 19237 )
783
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
784
784
785
785
// Verify that variants and utilities are all prefixed
786
786
let prefixed = completion . items . filter ( ( item ) => ! item . label . startsWith ( 'tw:' ) )
@@ -806,7 +806,7 @@ defineTest({
806
806
// ^
807
807
let completion = await document . completions ( { line : 0 , character : 15 } )
808
808
809
- expect ( completion ?. items . length ) . toBe ( 19236 )
809
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
810
810
811
811
// Verify that no variants and utilities have prefixes
812
812
let prefixed = completion . items . filter ( ( item ) => item . label . startsWith ( 'tw:' ) )
@@ -839,7 +839,7 @@ defineTest({
839
839
// ^
840
840
let completion = await document . completions ( { line : 0 , character : 20 } )
841
841
842
- expect ( completion ?. items . length ) . toBe ( 19236 )
842
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
843
843
} ,
844
844
} )
845
845
@@ -870,7 +870,7 @@ defineTest({
870
870
// ^
871
871
let completion = await document . completions ( { line : 1 , character : 22 } )
872
872
873
- expect ( completion ?. items . length ) . toBe ( 19236 )
873
+ expect ( completion ?. items . length ) . not . toBe ( 0 )
874
874
} ,
875
875
} )
876
876
@@ -960,24 +960,24 @@ defineTest({
960
960
// ^
961
961
let completionA = await document . completions ( { line : 0 , character : 13 } )
962
962
963
- expect ( completionA ?. items . length ) . toBe ( 19236 )
963
+ expect ( completionA ?. items . length ) . not . toBe ( 0 )
964
964
965
965
// return <Test className={cn("")} />;
966
966
// ^
967
967
let completionB = await document . completions ( { line : 3 , character : 30 } )
968
968
969
- expect ( completionB ?. items . length ) . toBe ( 19236 )
969
+ expect ( completionB ?. items . length ) . not . toBe ( 0 )
970
970
971
971
// return <Test className={cn("")} />;
972
972
// ^
973
973
let completionC = await document . completions ( { line : 7 , character : 30 } )
974
974
975
- expect ( completionC ?. items . length ) . toBe ( 19236 )
975
+ expect ( completionC ?. items . length ) . not . toBe ( 0 )
976
976
977
977
// let y = cva("");
978
978
// ^
979
979
let completionD = await document . completions ( { line : 10 , character : 13 } )
980
980
981
- expect ( completionD ?. items . length ) . toBe ( 19236 )
981
+ expect ( completionD ?. items . length ) . not . toBe ( 0 )
982
982
} ,
983
983
} )
0 commit comments