-
Notifications
You must be signed in to change notification settings - Fork 406
/
Copy pathaddPattern_tests.js
51 lines (40 loc) · 1.38 KB
/
addPattern_tests.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
'use strict';
const tap = require('tap');
const addPattern = require('../src/lib/addPattern');
var Pattern = require('../src/lib/object_factory').Pattern;
const util = require('./util/test_utils.js');
const patterns_dir = './test/files/_patterns';
tap.test(
'addPattern - adds pattern extended template to patternlab partial object',
function (test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var pattern = new Pattern('test/bar.hbs');
pattern.extendedTemplate = 'barExtended';
pattern.template = 'bar';
//act
addPattern(pattern, patternlab);
//assert
test.equal(patternlab.patterns.length, 1);
test.equal(patternlab.partials['test-bar'] !== undefined, true);
test.equal(patternlab.partials['test-bar'], 'barExtended');
test.end();
}
);
tap.test(
'addPattern - adds pattern template to patternlab partial object if extendedtemplate does not exist yet',
function (test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var pattern = new Pattern('test/bar.hbs');
pattern.extendedTemplate = undefined;
pattern.template = 'bar';
//act
addPattern(pattern, patternlab);
//assert
test.equal(patternlab.patterns.length, 1);
test.equal(patternlab.partials['test-bar'] !== undefined, true);
test.equal(patternlab.partials['test-bar'], 'bar');
test.end();
}
);