From 6586c7f007f345878987e6e47f72aec55be33ba1 Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Mon, 25 Jan 2016 10:59:35 +0100 Subject: [PATCH] Add tests stubs --- test/spec/ol/array.test.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/test/spec/ol/array.test.js b/test/spec/ol/array.test.js index ae0e70f514..380b10264b 100644 --- a/test/spec/ol/array.test.js +++ b/test/spec/ol/array.test.js @@ -402,6 +402,22 @@ describe('ol.array', function() { }); }); + describe('find', function() { + // TODO + }); + + describe('findIndex', function() { + // TODO + }); + + describe('flatten', function() { + // TODO + }); + + describe('isSorted', function() { + // TODO + }); + describe('linearFindNearest', function() { it('returns expected value', function() { var arr = [1000, 500, 100]; @@ -461,6 +477,10 @@ describe('ol.array', function() { }); }); + describe('remove', function() { + // TODO + }); + describe('reverseSubArray', function() { it('returns expected value', function() { var arr; @@ -483,6 +503,11 @@ describe('ol.array', function() { expect(arr).to.eql(expected); }); }); + + describe('stableSort', function() { + // TODO + }); + }); goog.require('ol.array');