@@ -9,8 +9,8 @@ describe('test coverage', ()=> {
99it('has coverage summary', ()=> {
1010assert(badge.includes('79%'));
1111assert.includes(doc, '[data-ice="coverageBadge"]', './badge.svg', 'src');
12-assert.includes(doc, '[data-ice="totalCoverageCount"]', '255/322');
13-assert.equal(doc.find('[data-ice="file"] [data-ice="coverage"]').length, 112);
12+assert.includes(doc, '[data-ice="totalCoverageCount"]', '258/325');
13+assert.equal(doc.find('[data-ice="file"] [data-ice="coverage"]').length, 114);
1414});
15151616/* eslint-disable max-statements */
@@ -30,6 +30,8 @@ describe('test coverage', ()=> {
3030test('file/src/Access/Method.js.html', '100 %5/5');
3131test('file/src/Access/Property.js.html#errorLines=5', '83 %5/6');
3232test('file/src/Access/Variable.js.html', '100 %4/4');
33+test('file/src/Async/Function.js.html', '100 %1/1');
34+test('file/src/Async/Method.js.html', '100 %2/2');
3335test('file/src/Class/Definition.js.html', '100 %8/8');
3436test('file/src/Computed/Method.js.html', '100 %11/11');
3537test('file/src/Computed/Property.js.html', '100 %12/12');
@@ -136,6 +138,6 @@ describe('test coverage', ()=> {
136138test('file/src/Version/Function.js.html', '100 %1/1');
137139test('file/src/Version/Variable.js.html', '100 %1/1');
138140139-assert.equal(count, 112);
141+assert.equal(count, 114);
140142});
141143});