Fix lowercasing of coverage driver

This commit is contained in:
Shivam Mathur
2020-01-26 16:15:39 +05:30
parent fbe1419ce4
commit d613c975f6
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ jest.mock('../src/extensions', () => ({
describe('Config tests', () => {
it('checking addCoverage with PCOV on windows', async () => {
let win32: string = await coverage.addCoverage('pcov', '7.4', 'win32');
let win32: string = await coverage.addCoverage('PCOV', '7.4', 'win32');
expect(win32).toContain('add_extension pcov');
expect(win32).toContain('Remove-Extension xdebug');