-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
test.js
85 lines (78 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*!
* pretty <https://github.com/jonschlinkert/pretty>
*
* Copyright (c) 2014 Jon Schlinkert, contributors.
* Licensed under the MIT License
*/
'use strict';
require('mocha');
const assert = require('assert');
const pretty = require('./');
describe('pretty', () => {
it('should format HTML.', () => {
const fixture = '<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> this is content... </body> </html>';
const expected = [
'<!DOCTYPE html>',
'<html lang="en">',
' <head>',
' <meta charset="UTF-8">',
' <title>Document</title>',
' </head>',
' <body> this is content... </body>',
'</html>',
].join('\n');
assert.equal(pretty(fixture, {ocd: true}), expected);
});
it('should add a newline before comments', () => {
const fixture = [
'<!DOCTYPE html>',
'<html lang="en">',
' <head>',
' <meta charset="UTF-8">',
' <title>Document</title>',
' <!-- comment -->',
' </head>',
' <body> this is content... </body>',
'</html>',
].join('\n');
const expected = [
'<!DOCTYPE html>',
'<html lang="en">',
' <head>',
' <meta charset="UTF-8">',
' <title>Document</title>',
'',
' <!-- comment -->',
' </head>',
' <body> this is content... </body>',
'</html>',
].join('\n');
assert.equal(pretty(fixture, {ocd: true}), expected);
});
it('should move "closing" comments after closing tags', () => {
const fixture = [
'<!DOCTYPE html>',
'<html lang="en">',
' <head>',
' <meta charset="UTF-8">',
' <title>Document</title>',
' </head>',
' <body> this is content... </body>',
' <div> foo </div>',
' <!-- /end -->',
'</html>',
].join('\n');
const expected = [
'<!DOCTYPE html>',
'<html lang="en">',
' <head>',
' <meta charset="UTF-8">',
' <title>Document</title>',
' </head>',
' <body> this is content... </body>',
' <div> foo </div> <!-- /end -->',
'</html>',
].join('\n');
assert.equal(pretty(fixture, {ocd: true}), expected);
});
});