@@ -159,6 +159,7 @@ describe('index', () => {
159
159
assert . equal ( typeof index . dotenv . load , 'function' , 'index.dotenv.load' )
160
160
assert . equal ( typeof index . dotenv . loadSafe , 'function' , 'index.dotenv.loadSafe' )
161
161
assert . equal ( typeof index . dotenv . parse , 'function' , 'index.dotenv.parse' )
162
+ assert . equal ( typeof index . dotenv . stringify , 'function' , 'index.dotenv.stringify' )
162
163
assert . equal ( typeof index . echo , 'function' , 'index.echo' )
163
164
assert . equal ( typeof index . expBackoff , 'function' , 'index.expBackoff' )
164
165
assert . equal ( typeof index . fetch , 'function' , 'index.fetch' )
@@ -420,6 +421,12 @@ describe('vendor', () => {
420
421
assert . equal ( typeof vendor . chalk , 'function' , 'vendor.chalk' )
421
422
assert . equal ( typeof vendor . chalk . level , 'number' , 'vendor.chalk.level' )
422
423
assert . equal ( typeof vendor . depseek , 'function' , 'vendor.depseek' )
424
+ assert . equal ( typeof vendor . dotenv , 'object' , 'vendor.dotenv' )
425
+ assert . equal ( typeof vendor . dotenv . config , 'function' , 'vendor.dotenv.config' )
426
+ assert . equal ( typeof vendor . dotenv . load , 'function' , 'vendor.dotenv.load' )
427
+ assert . equal ( typeof vendor . dotenv . loadSafe , 'function' , 'vendor.dotenv.loadSafe' )
428
+ assert . equal ( typeof vendor . dotenv . parse , 'function' , 'vendor.dotenv.parse' )
429
+ assert . equal ( typeof vendor . dotenv . stringify , 'function' , 'vendor.dotenv.stringify' )
423
430
assert . equal ( typeof vendor . fs , 'object' , 'vendor.fs' )
424
431
assert . equal ( typeof vendor . fs . Dir , 'function' , 'vendor.fs.Dir' )
425
432
assert . equal ( typeof vendor . fs . Dirent , 'function' , 'vendor.fs.Dirent' )
0 commit comments