diff options
Diffstat (limited to 'server/tests/helpers/version.ts')
-rw-r--r-- | server/tests/helpers/version.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/tests/helpers/version.ts b/server/tests/helpers/version.ts index 7d5600715..2a90efba3 100644 --- a/server/tests/helpers/version.ts +++ b/server/tests/helpers/version.ts | |||
@@ -21,11 +21,16 @@ describe('Version', function () { | |||
21 | expect(compareSemVer('3.4.0-alpha.1', '3.4.0-beta.1')).to.be.below(0) | 21 | expect(compareSemVer('3.4.0-alpha.1', '3.4.0-beta.1')).to.be.below(0) |
22 | expect(compareSemVer('3.4.0-beta.1', '3.4.0-beta.2')).to.be.below(0) | 22 | expect(compareSemVer('3.4.0-beta.1', '3.4.0-beta.2')).to.be.below(0) |
23 | expect(compareSemVer('3.4.0-beta.1', '3.5.0-alpha.1')).to.be.below(0) | 23 | expect(compareSemVer('3.4.0-beta.1', '3.5.0-alpha.1')).to.be.below(0) |
24 | |||
25 | expect(compareSemVer('3.4.0-alpha.1', '3.4.0-nightly.4')).to.be.below(0) | ||
26 | expect(compareSemVer('3.4.0-nightly.3', '3.4.0-nightly.4')).to.be.below(0) | ||
27 | expect(compareSemVer('3.3.0-nightly.5', '3.4.0-nightly.4')).to.be.below(0) | ||
24 | }) | 28 | }) |
25 | 29 | ||
26 | it('Should correctly compare a stable and unstable versions', async function () { | 30 | it('Should correctly compare a stable and unstable versions', async function () { |
27 | expect(compareSemVer('3.4.0', '3.4.1-beta.1')).to.be.below(0) | 31 | expect(compareSemVer('3.4.0', '3.4.1-beta.1')).to.be.below(0) |
28 | expect(compareSemVer('3.4.0-beta.1', '3.4.0-beta.2')).to.be.below(0) | 32 | expect(compareSemVer('3.4.0-beta.1', '3.4.0-beta.2')).to.be.below(0) |
29 | expect(compareSemVer('3.4.0-beta.1', '3.4.0')).to.be.below(0) | 33 | expect(compareSemVer('3.4.0-beta.1', '3.4.0')).to.be.below(0) |
34 | expect(compareSemVer('3.4.0-nightly.4', '3.4.0')).to.be.below(0) | ||
30 | }) | 35 | }) |
31 | }) | 36 | }) |