-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreporter.js
77 lines (52 loc) · 1.33 KB
/
reporter.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
'use strict';
var should = require('should'),
gutil = require('gulp-util'),
a11y = require('../src/');
describe('gulp-a11y format', function () {
var stream, fixture;
beforeEach(function () {
fixture = new gutil.File({
base: __dirname + '/fixtures/',
cwd: __dirname,
path: __dirname + '/fixtures/fixture.html'
});
stream = a11y();
});
it('should return a report', function (done) {
stream.on('data', function (file) {
file.should.have.property('a11y');
});
stream.on('end', function () {
done();
});
stream.write(fixture);
stream.end();
});
it('should format a report', function (done) {
var report = a11y.reporter(function (output) {
should.exist(output);
});
stream.on('end', function () {
done();
});
stream.write(fixture);
stream.pipe(report);
stream.end();
});
it('should fail on error', function (done) {
var fail = a11y.failOnError();
stream.on('data', function (file) {
file.should.have.property('a11y');
});
fail.on('error', function (error) {
should.exist(error);
done();
});
fail.on('end', function () {
done(new Error('Stream completed without failure.'));
});
stream.write(fixture);
stream.pipe(fail);
stream.end();
});
});