Skip to content

Commit

Permalink
Move deprecation test to 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nagix committed Mar 22, 2019
1 parent a4c0515 commit 967ff23
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions test/specs/global.deprecations.tests.js
@@ -1,4 +1,12 @@
describe('Deprecations', function() {
describe('Version 2.9.0', function() {
describe('Chart.Scale.mergeTicksOptions', function() {
it('should be defined as a function', function() {
expect(typeof Chart.Scale.prototype.mergeTicksOptions).toBe('function');
});
});
});

describe('Version 2.8.0', function() {
[
['Bar', 'bar'],
Expand Down Expand Up @@ -60,12 +68,6 @@ describe('Deprecations', function() {
expect(typeof Chart.helpers.scaleMerge).toBe('function');
});
});

describe('Chart.Scale.mergeTicksOptions', function() {
it('should be defined as a function', function() {
expect(typeof Chart.Scale.prototype.mergeTicksOptions).toBe('function');
});
});
});

describe('Version 2.7.3', function() {
Expand Down

0 comments on commit 967ff23

Please sign in to comment.