diff options
Diffstat (limited to 'test/cache-map.test.js')
| -rw-r--r-- | test/cache-map.test.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/test/cache-map.test.js b/test/cache-map.test.js index 72579f25..868c5d9a 100644 --- a/test/cache-map.test.js +++ b/test/cache-map.test.js @@ -16,8 +16,6 @@   * along with this program.  If not, see <https://www.gnu.org/licenses/>.   */ -/* eslint-disable no-multi-spaces */ -  import {describe, expect, test} from 'vitest';  import {CacheMap} from '../ext/js/general/cache-map.js'; @@ -39,6 +37,7 @@ function testConstructor() {  /** */  function testApi() {      describe('api', () => { +        /* eslint-disable no-multi-spaces */          const data = [              {                  maxSize: 1, @@ -90,6 +89,7 @@ function testApi() {                  ]              }          ]; +        /* eslint-enable no-multi-spaces */          test.each(data)('api-test-%#', ({maxSize, expectedSize, calls}) => {              const cache = new CacheMap(maxSize); |