diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-02-17 15:59:27 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-02-17 15:59:27 +0100 |
commit | 5fdee2cb5e846303b5bd4f10552b1d60201c3cb7 (patch) | |
tree | ea07c2576240ec4ce9fece343afc212a56619630 | |
parent | 1db3f3deab86c69f31b1cf1454bb23315639025a (diff) | |
download | gitbook-5fdee2cb5e846303b5bd4f10552b1d60201c3cb7.zip gitbook-5fdee2cb5e846303b5bd4f10552b1d60201c3cb7.tar.gz gitbook-5fdee2cb5e846303b5bd4f10552b1d60201c3cb7.tar.bz2 |
Add file website output tests
-rw-r--r-- | test/all.js | 4 | ||||
-rw-r--r-- | test/output-website.js | 5 | ||||
-rw-r--r-- | test/website-theme.js | 17 |
3 files changed, 7 insertions, 19 deletions
diff --git a/test/all.js b/test/all.js index df367b2..f8ba153 100644 --- a/test/all.js +++ b/test/all.js @@ -16,6 +16,6 @@ require('./conrefs'); require('./page'); // Output -require('./output-json'); require('./assets-inliner'); -require('./website-theme'); +require('./output-json'); +require('./output-website'); diff --git a/test/output-website.js b/test/output-website.js new file mode 100644 index 0000000..86c9d2b --- /dev/null +++ b/test/output-website.js @@ -0,0 +1,5 @@ + +describe('Website Output', function() { + +}); + diff --git a/test/website-theme.js b/test/website-theme.js deleted file mode 100644 index afbae5e..0000000 --- a/test/website-theme.js +++ /dev/null @@ -1,17 +0,0 @@ - - -describe('Website Theming', function() { - -// Spec proposal: -// - Plugins can "export" a theme -// - Theme can be overrided in the book itself - - -// Themes structures -// - _layout/ (Folder containing all the templates) -// - page.html (Template used for generating a page) -// - _assets/ (Assets of the theme copied to the output) - - -}); - |