We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac2c87e commit 13d6864Copy full SHA for 13d6864
test/encryption/encryption.test.js
@@ -29,11 +29,13 @@ describe('ci', () => {
29
describe('environmental variables', () => {
30
it('MONGOOSE_TEST_URI is set', async function() {
31
const uri = process.env.MONGOOSE_TEST_URI;
32
+ console.log('MONGOOSE_TEST_URI=', uri);
33
assert.ok(uri);
34
});
35
36
it('CRYPT_SHARED_LIB_PATH is set', async function() {
37
const shared_library_path = process.env.CRYPT_SHARED_LIB_PATH;
38
+ console.log('CRYPT_SHARED_LIB_PATH=', shared_library_path);
39
assert.ok(shared_library_path);
40
41
0 commit comments