-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
63 lines (51 loc) · 1.61 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'use strict';
var assert = require('assert');
var gutil = require('gulp-util');
var tpl = require('./gulp-html-compile');
it('should precompile html templates', function(cb) {
var stream = tpl();
stream.on('data', function (file) {
assert.equal(file.path, __dirname + '\/fixture\/fixture.js');
assert.equal(file.relative, 'fixture\/fixture.js');
assert(/["templates"]/.test(file.contents.toString()));
assert(/["fixture\/fixture.html"]/.test(file.contents.toString()));
cb();
});
stream.write(new gutil.File({
base: __dirname,
path: __dirname + '/fixture/fixture.html',
contents: new Buffer('<h1>Hello world</h1>')
}));
});
it('should support supplying custom name in a callback', function (cb) {
var stream = tpl(
{
name: function (file) {
return 'custom';
}
});
stream.on('data', function (file) {
assert(/{}\)\["custom"]/.test(file.contents.toString()));
cb();
});
stream.write(new gutil.File({
base: __dirname,
path: __dirname + '/fixture/fixture.html',
contents: new Buffer('<h1>Hello world</h1>')
}));
});
it('should support supplying a custom namespace', function (cb) {
var stream = tpl(
{
namespace: 'customNS',
});
stream.on('data', function (file) {
assert(/window\["customNS"\]/.test(file.contents.toString()));
cb();
});
stream.write(new gutil.File({
base: __dirname,
path: __dirname + '/fixture/fixture.html',
contents: new Buffer('<h1>Hello world</h1>')
}));
});