32 lines
988 B
JavaScript
32 lines
988 B
JavaScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { isWpVersion, setSetting } from '..';
|
|
|
|
describe( 'isWpVersion', () => {
|
|
let initial = true;
|
|
it.each`
|
|
version | operator | result
|
|
${ '5.3-beta1' } | ${ '<' } | ${ true }
|
|
${ '5.3' } | ${ '=' } | ${ true }
|
|
${ '5.3-beta12-235' } | ${ '<' } | ${ true }
|
|
${ '5.3-rc1' } | ${ '>' } | ${ false }
|
|
${ '5.3-rc12-235' } | ${ '<' } | ${ true }
|
|
${ '5.3.1' } | ${ '>' } | ${ true }
|
|
${ '5.4-beta1' } | ${ '>' } | ${ true }
|
|
`(
|
|
'should return $result when $version is the current wpVersion ' +
|
|
'and `5.3` is the version compared using `$operator`',
|
|
( { version, operator, result } ) => {
|
|
setSetting( 'wpVersion', version );
|
|
// deprecated caches messages once per session, so we only check
|
|
// console warn on initial call.
|
|
if ( initial ) {
|
|
expect( console ).toHaveWarned();
|
|
}
|
|
initial = false;
|
|
expect( isWpVersion( '5.3', operator ) ).toBe( result );
|
|
}
|
|
);
|
|
} );
|