mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-13 05:04:54 +00:00
15 lines
691 B
TypeScript
15 lines
691 B
TypeScript
import { getNextVersion } from "./get-next-version"
|
|
|
|
describe('getNextVersion', () => {
|
|
it('should get the next nightly version for Magento Open Source', () => {
|
|
expect(getNextVersion('https://upstream-nightly.mage-os.org', new Date('2022-09-29T17:47:00')), ).toEqual('@alpha');
|
|
});
|
|
|
|
it('should get the next nightly version for Mage-OS', () => {
|
|
expect(getNextVersion('https://nightly.mage-os.org', new Date('2024-09-29T17:47:00')), ).toEqual('@alpha');
|
|
});
|
|
|
|
it('should handle the first of the month correctly', () => {
|
|
expect(getNextVersion('https://upstream-nightly.mage-os.org', new Date('2022-01-01T17:47:00')), ).toEqual('@alpha');
|
|
});
|
|
}) |