@@ -4,13 +4,13 @@ const chai = require('chai');
44const expect = chai . expect ;
55const api = require ( '../index' ) ;
66
7- describe ( 'module' , function ( ) {
8- it ( 'should export version' , function ( ) {
7+ describe ( 'module' , function ( ) {
8+ it ( 'should export version' , function ( ) {
99 expect ( api . version ) . to . be . a ( 'string' ) ;
1010 expect ( api . version ) . to . match ( / \d + \. \d + / ) ;
1111 } ) ;
1212
13- it ( 'should export flags and ids' , function ( ) {
13+ it ( 'should export flags and ids' , function ( ) {
1414 [
1515 api . GSS_C_DELEG_FLAG ,
1616 api . GSS_C_MUTUAL_FLAG ,
@@ -27,7 +27,7 @@ describe('module', function () {
2727 ] . forEach ( flag => expect ( flag ) . to . be . a ( 'number' ) ) ;
2828 } ) ;
2929
30- it ( 'should export functions' , function ( ) {
30+ it ( 'should export functions' , function ( ) {
3131 expect ( api . initializeClient ) . to . be . a ( 'function' ) ;
3232 expect ( api . initializeServer ) . to . be . a ( 'function' ) ;
3333 expect ( api . principalDetails ) . to . be . a ( 'function' ) ;
@@ -37,4 +37,4 @@ describe('module', function () {
3737 it ( 'should export Kerberos' , ( ) => {
3838 expect ( api . Kerberos ) . to . be . an ( 'object' ) ;
3939 } ) ;
40- } ) ;
40+ } ) ;
0 commit comments