This repository was archived by the owner on Mar 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.spec.js
66 lines (52 loc) · 1.84 KB
/
options.spec.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
64
65
66
'use strict';
process.env.NODE_ENV = 'test';
var assert = require('chai').assert;
var qual = require('../lib/index.js');
describe('Options', function() {
it('should fix options for empty objects', function() {
var options = qual.fix_options();
assert.isNotNull(options);
assert.equal(options.loc_i18n, './src/i18n/');
assert.equal(options.loc_html, './src/**/');
assert.equal(options.cb, console.log);
assert.equal(options.check_html, true);
assert.equal(options.ignore_order, false);
assert.equal(options.ignore_empty_values, false);
assert.equal(options.fail_on_warning, false);
assert.equal(options.indent, '\t');
assert.deepEqual(options.exclusions, []);
});
it('should not modify user options', function() {
var options = qual.fix_options({
loc_i18n: 'i18n/',
loc_html: 'html/',
cb: function() {},
check_html: false,
ignore_order: true,
ignore_empty_values: true,
fail_on_warning: false,
indent: ' ',
exclusions: ['test']
});
assert.isNotNull(options);
assert.equal(options.loc_i18n, 'i18n/');
assert.equal(options.loc_html, 'html/');
assert.notEqual(options.cb, console.log);
assert.equal(options.check_html, false);
assert.equal(options.ignore_order, true);
assert.equal(options.ignore_empty_values, true);
assert.equal(options.fail_on_warning, false);
assert.equal(options.indent, ' ');
assert.deepEqual(options.exclusions, ['test']);
});
it('should fix options for paths without trailing separator', function() {
var options = qual.fix_options({
loc_i18n: './src/i18n',
loc_html: './src/**'
});
assert.isNotNull(options);
assert.equal(options.loc_i18n, './src/i18n/');
assert.equal(options.loc_html, './src/**/');
assert.equal(options.cb, console.log);
});
});