diff options
Diffstat (limited to 'test/node_modules/gitbook-plugin-test-hooks/index.js')
-rw-r--r-- | test/node_modules/gitbook-plugin-test-hooks/index.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/node_modules/gitbook-plugin-test-hooks/index.js b/test/node_modules/gitbook-plugin-test-hooks/index.js deleted file mode 100644 index cd9d1b0..0000000 --- a/test/node_modules/gitbook-plugin-test-hooks/index.js +++ /dev/null @@ -1,18 +0,0 @@ -module.exports = { - hooks: { - 'init': function() { - global._hooks = []; - global._hooks.push('init'); - }, - 'finish': function() { - global._hooks.push('finish'); - }, - 'finish:before': function() { - global._hooks.push('finish:before'); - }, - page: function(page) { - page.content = 'Hello ' + page.content; - return page; - } - } -}; |