|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`.not.toBeEmptyArray fails when given an empty array 1`] = ` |
| 4 | +"<dim>expect(</intensity><red>received</color><dim>).not.toBeEmptyArray()</intensity> |
| 5 | +
|
| 6 | +Expected value to not be an empty array, received: |
| 7 | + <red>[]</color>" |
| 8 | +`; |
| 9 | + |
| 10 | +exports[`.toBeEmptyArray fails when given type of () => { } which is not an array 1`] = ` |
| 11 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 12 | +
|
| 13 | +Expected value to be an empty array, received: |
| 14 | + <red>[Function anonymous]</color>" |
| 15 | +`; |
| 16 | + |
| 17 | +exports[`.toBeEmptyArray fails when given type of {} which is not an array 1`] = ` |
| 18 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 19 | +
|
| 20 | +Expected value to be an empty array, received: |
| 21 | + <red>{}</color>" |
| 22 | +`; |
| 23 | + |
| 24 | +exports[`.toBeEmptyArray fails when given type of 0 which is not an array 1`] = ` |
| 25 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 26 | +
|
| 27 | +Expected value to be an empty array, received: |
| 28 | + <red>0</color>" |
| 29 | +`; |
| 30 | + |
| 31 | +exports[`.toBeEmptyArray fails when given type of NaN which is not an array 1`] = ` |
| 32 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 33 | +
|
| 34 | +Expected value to be an empty array, received: |
| 35 | + <red>NaN</color>" |
| 36 | +`; |
| 37 | + |
| 38 | +exports[`.toBeEmptyArray fails when given type of false which is not an array 1`] = ` |
| 39 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 40 | +
|
| 41 | +Expected value to be an empty array, received: |
| 42 | + <red>false</color>" |
| 43 | +`; |
| 44 | + |
| 45 | +exports[`.toBeEmptyArray fails when given type of null which is not an array 1`] = ` |
| 46 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 47 | +
|
| 48 | +Expected value to be an empty array, received: |
| 49 | + <red>null</color>" |
| 50 | +`; |
| 51 | + |
| 52 | +exports[`.toBeEmptyArray fails when given type of true which is not an array 1`] = ` |
| 53 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 54 | +
|
| 55 | +Expected value to be an empty array, received: |
| 56 | + <red>true</color>" |
| 57 | +`; |
| 58 | + |
| 59 | +exports[`.toBeEmptyArray fails when given type of undefined which is not an array 1`] = ` |
| 60 | +"<dim>expect(</intensity><red>received</color><dim>).toBeEmptyArray()</intensity> |
| 61 | +
|
| 62 | +Expected value to be an empty array, received: |
| 63 | + <red>undefined</color>" |
| 64 | +`; |
0 commit comments