Skip to content

Commit bccc665

Browse files
author
Simon Prickett
committed
Adds password comments to basic test suites.
1 parent 801cdbb commit bccc665

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

tests/basic.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ bluebird.promisifyAll(redis);
66
const client = redis.createClient({
77
host: 'localhost',
88
port: 6379,
9+
// password: 'password',
910
});
1011

1112
const testSuiteName = 'Basic';

tests/data_types.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ bluebird.promisifyAll(redis);
66
const client = redis.createClient({
77
host: 'localhost',
88
port: 6379,
9+
// password: 'password',
910
});
1011

1112
const testSuiteName = 'data_types';

tests/hello.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ bluebird.promisifyAll(redis);
66
const client = redis.createClient({
77
host: 'localhost',
88
port: 6379,
9+
// password: 'password',
910
});
1011

1112
const testSuiteName = 'Hello';

0 commit comments

Comments
 (0)