mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
fix test
This commit is contained in:
parent
120c398555
commit
2308f49fa4
1 changed files with 10 additions and 10 deletions
|
@ -1,33 +1,33 @@
|
|||
var updateVersion = require('../../../../tasks/utils/updateVersion');
|
||||
var expect = require('expect.js');
|
||||
|
||||
describe('tasks/utils/updateVersion', function () {
|
||||
describe('tasks/utils/updateVersion', function() {
|
||||
|
||||
it('applies a basic "minor" update', function () {
|
||||
it('applies a basic "minor" update', function() {
|
||||
expect(updateVersion('1.4.1', 'minor')).to.be('1.5.0');
|
||||
});
|
||||
|
||||
it('accepts a number for a version name', function () {
|
||||
it('accepts a number for a version name', function() {
|
||||
expect(updateVersion('1.5.5', 'minor=10')).to.be('1.10.0');
|
||||
});
|
||||
|
||||
it('clears the tag and updates all lower version ids', function () {
|
||||
it('clears the tag and updates all lower version ids', function() {
|
||||
expect(updateVersion('0.0.1-beta2', 'major=4')).to.be('4.0.0');
|
||||
});
|
||||
|
||||
it('updates just a tag', function () {
|
||||
it('updates just a tag', function() {
|
||||
expect(updateVersion('4.0.0-beta1', 'tag=beta2')).to.be('4.0.0-beta2');
|
||||
});
|
||||
|
||||
it('clears a tag', function () {
|
||||
it('clears a tag', function() {
|
||||
expect(updateVersion('4.0.0-rc1', 'tag=')).to.be('4.0.0');
|
||||
});
|
||||
|
||||
it('adds a tag, bumping the minor version', function () {
|
||||
it('adds a tag, bumping the minor version', function() {
|
||||
expect(updateVersion('4.0.0', 'tag=snapshot')).to.be('4.1.0-snapshot');
|
||||
});
|
||||
|
||||
it('changes a tag', function () {
|
||||
it('changes a tag', function() {
|
||||
expect(updateVersion('4.1.0-snapshot', 'tag=rc1')).to.be('4.1.0-rc1');
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue