Skip to content

Commit ec3e0ca

Browse files
committed
captured scarecrow dependency for #8
1 parent ac45a70 commit ec3e0ca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/api/auth.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ exports.register = function (server, options, next) {
99
};
1010

1111
exports.register.attributes = {
12-
name: 'auth-strategy'
12+
name: 'auth-strategy',
13+
dependencies: 'scarecrow'
1314
};

test/unit/api/auth-test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ const auth = require('../../../lib/api/auth');
33
suite('api authorization', function () {
44
test('that the plugin is defined', () => {
55
assert.equals(auth.register.attributes, {
6-
name: 'auth-strategy'
6+
name: 'auth-strategy',
7+
dependencies: 'scarecrow'
78
});
89
});
910

0 commit comments

Comments
 (0)