Add support for fail-fast env variable

This commit is contained in:
Shivam Mathur
2020-10-17 04:13:36 +05:30
parent 96d8c1e901
commit b77ec78d01
7 changed files with 26 additions and 9 deletions

View File

@ -349,12 +349,12 @@ describe('Tools tests', () => {
script = await tools.addDevTools('phpize', 'win32');
expect(script).toContain(
'Add-Log "$cross" "phpize" "phpize is not a windows tool"'
'Add-Log "$tick" "phpize" "phpize is not a windows tool"'
);
script = await tools.addDevTools('php-config', 'win32');
expect(script).toContain(
'Add-Log "$cross" "php-config" "php-config is not a windows tool"'
'Add-Log "$tick" "php-config" "php-config is not a windows tool"'
);
script = await tools.addDevTools('tool', 'openbsd');