Skip to content

Commit 13d6864

Browse files
committed
print out MONGOOSE_TEST_URI for debug
1 parent ac2c87e commit 13d6864

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/encryption/encryption.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ describe('ci', () => {
2929
describe('environmental variables', () => {
3030
it('MONGOOSE_TEST_URI is set', async function() {
3131
const uri = process.env.MONGOOSE_TEST_URI;
32+
console.log('MONGOOSE_TEST_URI=', uri);
3233
assert.ok(uri);
3334
});
3435

3536
it('CRYPT_SHARED_LIB_PATH is set', async function() {
3637
const shared_library_path = process.env.CRYPT_SHARED_LIB_PATH;
38+
console.log('CRYPT_SHARED_LIB_PATH=', shared_library_path);
3739
assert.ok(shared_library_path);
3840
});
3941
});

0 commit comments

Comments
 (0)