-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gruntfile.js
38 lines (34 loc) · 938 Bytes
/
Gruntfile.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
/**
* grunt-cssjanus. https://www.mediawiki.org/wiki/CSSJanus
*
* Copyright (c) 2013 Yoav Farhi
* Licensed under the MIT license.
*/
'use strict';
module.exports = function ( grunt ) {
grunt.loadTasks( 'tasks' );
grunt.initConfig( {
cssjanus: {
options: {
swapLtrRtlInUrl: true,
swapLeftRightInUrl: false,
generateExactDuplicates: false
},
'fixtures/actual.css': 'fixtures/input.css'
}
} );
grunt.registerTask( 'match', () => {
const actual = grunt.file.read( 'fixtures/actual.css' );
const expected = grunt.file.read( 'fixtures/expected.css' );
if ( actual !== expected ) {
grunt.log.error( 'Test result mismatch.' );
grunt.log.subhead( 'Actual' );
grunt.log.write( actual );
grunt.log.subhead( 'Expected' );
grunt.log.write( expected );
return false;
}
grunt.log.ok( 'Test result matches expectation.' );
} );
grunt.registerTask( 'test', [ 'cssjanus', 'match' ] );
};