diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-02-22 10:36:28 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-02-22 10:36:28 +0100 |
commit | 1e243281c7f0444162dfb8593e9fd9ac2aa725ab (patch) | |
tree | d573af3258a36702ce7524f0a2143a07dece2d4e /test/node_modules/gitbook-plugin-test-resources/index.js | |
parent | de234944090dcb2356db1185e3fba7935dc6ee11 (diff) | |
download | gitbook-1e243281c7f0444162dfb8593e9fd9ac2aa725ab.zip gitbook-1e243281c7f0444162dfb8593e9fd9ac2aa725ab.tar.gz gitbook-1e243281c7f0444162dfb8593e9fd9ac2aa725ab.tar.bz2 |
Add test for resources listing
Diffstat (limited to 'test/node_modules/gitbook-plugin-test-resources/index.js')
-rw-r--r-- | test/node_modules/gitbook-plugin-test-resources/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/node_modules/gitbook-plugin-test-resources/index.js b/test/node_modules/gitbook-plugin-test-resources/index.js new file mode 100644 index 0000000..e95e411 --- /dev/null +++ b/test/node_modules/gitbook-plugin-test-resources/index.js @@ -0,0 +1,12 @@ +module.exports = { + book: { + assets: './assets', + js: [ + 'myfile.js', + 'https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.min.js' + ], + css: [ + 'myfile.css' + ] + } +}; |