@@ -14,12 +14,12 @@ import { notDefined } from './variables/not-defined.const';
1414 * Checks
1515 * ✓ typeof === 'bigint'
1616 */
17- describe ( ' isBigInt' , ( ) => {
17+ describe ( isBigInt . name , ( ) => {
1818 // TRUE
1919 it ( 'is DEFINED' , ( ) => {
2020 expect ( isBigInt ) . toBeDefined ( ) ;
2121 } ) ;
22- it ( `' bigint' ` , ( ) => {
22+ it ( `bigint` , ( ) => {
2323 expect ( isBigInt ( BIGINT ) ) . toBe ( TRUE ) ;
2424 expect ( isBigInt ( BIGINT_INSTANCE ) ) . toBe ( TRUE ) ;
2525 isBigInt ( BIGINT_INSTANCE , ( result : boolean ) => {
@@ -29,7 +29,7 @@ describe('isBigInt', () => {
2929 } ) ;
3030
3131 // FALSE
32- it ( `' boolean' | Boolean` , ( ) => {
32+ it ( `boolean | Boolean` , ( ) => {
3333 expect ( isBigInt ( FALSE ) ) . toBe ( FALSE ) ;
3434 expect ( isBigInt ( TRUE ) ) . toBe ( FALSE ) ;
3535 expect ( isBigInt ( FALSE_INSTANCE ) ) . toBe ( FALSE ) ;
@@ -43,7 +43,7 @@ describe('isBigInt', () => {
4343 expect ( isBigInt ( Class ) ) . toBe ( FALSE ) ;
4444 expect ( isBigInt ( CLASS ) ) . toBe ( FALSE ) ;
4545 } ) ;
46- it ( `' function' | Function` , ( ) => expect ( isBigInt ( FUNCTION ) ) . toBe ( FALSE ) ) ;
46+ it ( `function | Function` , ( ) => expect ( isBigInt ( FUNCTION ) ) . toBe ( FALSE ) ) ;
4747 it ( `null | NULL` , ( ) => {
4848 expect ( isBigInt ( null ) ) . toBe ( FALSE ) ;
4949 expect ( isBigInt ( NULL ) ) . toBe ( FALSE ) ;
0 commit comments