@@ -41,7 +41,7 @@ test('basic even', () => {
4141 } ) ;
4242} ) ;
4343
44- test ( 'test xBoxPlot even' , ( ) => {
44+ test ( 'xBoxPlot even' , ( ) => {
4545 const array = [ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 ] ;
4646
4747 expect ( xBoxPlot ( array ) ) . toStrictEqual ( {
@@ -53,7 +53,7 @@ test('test xBoxPlot even', () => {
5353 } ) ;
5454} ) ;
5555
56- test ( 'test xBoxPlot even small' , ( ) => {
56+ test ( 'xBoxPlot even small' , ( ) => {
5757 const array = [ 0 , 1 , 2 , 3 , 4 , 5 ] ;
5858
5959 expect ( xBoxPlot ( array ) ) . toStrictEqual ( {
@@ -65,7 +65,7 @@ test('test xBoxPlot even small', () => {
6565 } ) ;
6666} ) ;
6767
68- test ( 'test xBoxPlot odd' , ( ) => {
68+ test ( 'xBoxPlot odd' , ( ) => {
6969 const array = [ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] ;
7070
7171 expect ( xBoxPlot ( array ) ) . toStrictEqual ( {
@@ -77,7 +77,7 @@ test('test xBoxPlot odd', () => {
7777 } ) ;
7878} ) ;
7979
80- test ( 'test xBoxPlot odd small' , ( ) => {
80+ test ( 'xBoxPlot odd small' , ( ) => {
8181 const array = [ 0 , 1 , 2 , 3 , 4 ] ;
8282
8383 expect ( xBoxPlot ( array ) ) . toStrictEqual ( {
@@ -89,13 +89,13 @@ test('test xBoxPlot odd small', () => {
8989 } ) ;
9090} ) ;
9191
92- test ( 'test xBoxPlot too small' , ( ) => {
92+ test ( 'xBoxPlot too small' , ( ) => {
9393 const array : number [ ] = [ ] ;
9494
9595 expect ( ( ) => xBoxPlot ( array ) ) . toThrow ( 'input must not be empty' ) ;
9696} ) ;
9797
98- test ( 'test xBoxPlot with one element' , ( ) => {
98+ test ( 'xBoxPlot with one element' , ( ) => {
9999 const array = [ 42 ] ;
100100
101101 expect ( xBoxPlot ( array ) ) . toStrictEqual ( {
@@ -107,7 +107,7 @@ test('test xBoxPlot with one element', () => {
107107 } ) ;
108108} ) ;
109109
110- test ( 'test xBoxPlot with 2 elements' , ( ) => {
110+ test ( 'xBoxPlot with 2 elements' , ( ) => {
111111 const array = [ 40 , 44 ] ;
112112 const result = xBoxPlot ( array ) ;
113113
@@ -120,7 +120,7 @@ test('test xBoxPlot with 2 elements', () => {
120120 } ) ;
121121} ) ;
122122
123- test ( 'test xBoxPlot with 3 elements' , ( ) => {
123+ test ( 'xBoxPlot with 3 elements' , ( ) => {
124124 const array = [ 44 , 40 , 42 ] ;
125125 const result = xBoxPlot ( array ) ;
126126
0 commit comments