mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-09-07 13:24:07 +07:00
Ship with @zeit/ncc
This commit is contained in:
@ -26,6 +26,23 @@ describe('Utils tests', () => {
|
||||
expect(await utils.getInput('DoesNotExist', false)).toBe('');
|
||||
});
|
||||
|
||||
it('checking getVersion', async () => {
|
||||
process.env['php-version'] = '7.3';
|
||||
expect(await utils.getVersion()).toBe('7.3');
|
||||
process.env['php-version'] = '7.4';
|
||||
expect(await utils.getVersion()).toBe('7.4');
|
||||
process.env['php-version'] = '8.0';
|
||||
expect(await utils.getVersion()).toBe('7.4');
|
||||
process.env['php-version'] = '8.0-dev';
|
||||
expect(await utils.getVersion()).toBe('7.4');
|
||||
process.env['php-version'] = '7.4nightly';
|
||||
expect(await utils.getVersion()).toBe('7.4');
|
||||
process.env['php-version'] = '7.4snapshot';
|
||||
expect(await utils.getVersion()).toBe('7.4');
|
||||
process.env['php-version'] = 'nightly';
|
||||
expect(await utils.getVersion()).toBe('7.4');
|
||||
});
|
||||
|
||||
it('checking asyncForEach', async () => {
|
||||
const array: Array<string> = ['a', 'b', 'c'];
|
||||
let concat = '';
|
||||
|
Reference in New Issue
Block a user