diff options
Diffstat (limited to 'lib/templating/__tests__/conrefsLoader.js')
-rw-r--r-- | lib/templating/__tests__/conrefsLoader.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/templating/__tests__/conrefsLoader.js b/lib/templating/__tests__/conrefsLoader.js index ff484b7..d430a4f 100644 --- a/lib/templating/__tests__/conrefsLoader.js +++ b/lib/templating/__tests__/conrefsLoader.js @@ -9,21 +9,21 @@ describe('ConrefsLoader', function() { }); describe('Git', function() { - pit('should include content from git', function() { + it('should include content from git', function() { return renderTemplate(engine, 'test.md', '{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test.md" %}') .then(function(out) { expect(out.getContent()).toBe('Hello from git'); }); }); - pit('should handle deep inclusion (1)', function() { + it('should handle deep inclusion (1)', function() { return renderTemplate(engine, 'test.md', '{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test2.md" %}') .then(function(out) { expect(out.getContent()).toBe('First Hello. Hello from git'); }); }); - pit('should handle deep inclusion (2)', function() { + it('should handle deep inclusion (2)', function() { return renderTemplate(engine, 'test.md', '{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test3.md" %}') .then(function(out) { expect(out.getContent()).toBe('First Hello. Hello from git'); |