mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-21 02:06:33 +00:00
Convert middle-ellipsis.spec.js to typescript
Change-type: patch
This commit is contained in:
parent
3c7c55364b
commit
b8fdbc3e94
2
Makefile
2
Makefile
@ -178,7 +178,7 @@ test-spectron:
|
|||||||
ETCHER_SPECTRON_ENTRYPOINT="$(ETCHER_SPECTRON_ENTRYPOINT)" mocha $(MOCHA_OPTIONS) tests/spectron
|
ETCHER_SPECTRON_ENTRYPOINT="$(ETCHER_SPECTRON_ENTRYPOINT)" mocha $(MOCHA_OPTIONS) tests/spectron
|
||||||
|
|
||||||
test-gui:
|
test-gui:
|
||||||
electron-mocha $(MOCHA_OPTIONS) --full-trace --no-sandbox --renderer tests/gui
|
electron-mocha $(MOCHA_OPTIONS) --full-trace --no-sandbox --renderer tests/gui/**/*.js tests/gui/**/*.ts
|
||||||
|
|
||||||
test-sdk:
|
test-sdk:
|
||||||
electron-mocha $(MOCHA_OPTIONS) --full-trace --no-sandbox tests/shared/**/*.js tests/shared/**/*.ts
|
electron-mocha $(MOCHA_OPTIONS) --full-trace --no-sandbox tests/shared/**/*.js tests/shared/**/*.ts
|
||||||
|
@ -1,46 +0,0 @@
|
|||||||
|
|
||||||
/*
|
|
||||||
* Copyright 2018 balena.io
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
|
||||||
|
|
||||||
const m = require('mochainon')
|
|
||||||
// eslint-disable-next-line node/no-missing-require
|
|
||||||
const { middleEllipsis } = require('../../../lib/gui/app/utils/middle-ellipsis')
|
|
||||||
|
|
||||||
describe('Browser: MiddleEllipsis', function () {
|
|
||||||
describe('.middleEllipsis()', function () {
|
|
||||||
it('should throw error if limit < 3', function () {
|
|
||||||
m.chai.expect(() => {
|
|
||||||
middleEllipsis('No', 2)
|
|
||||||
}).to.throw('middleEllipsis: Limit should be at least 3')
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('given the input length is greater than the limit', function () {
|
|
||||||
it('should always truncate input to an odd length', function () {
|
|
||||||
const alphabet = 'abcdefghijklmnopqrstuvwxyz'
|
|
||||||
m.chai.expect(middleEllipsis(alphabet, 3)).to.have.a.lengthOf(3)
|
|
||||||
m.chai.expect(middleEllipsis(alphabet, 4)).to.have.a.lengthOf(3)
|
|
||||||
m.chai.expect(middleEllipsis(alphabet, 5)).to.have.a.lengthOf(5)
|
|
||||||
m.chai.expect(middleEllipsis(alphabet, 6)).to.have.a.lengthOf(5)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('should return the input if it is within the bounds of limit', function () {
|
|
||||||
m.chai.expect(middleEllipsis('Hello', 10)).to.equal('Hello')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
43
tests/gui/utils/middle-ellipsis.spec.ts
Normal file
43
tests/gui/utils/middle-ellipsis.spec.ts
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2018 balena.io
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { expect } from 'chai';
|
||||||
|
|
||||||
|
import { middleEllipsis } from '../../../lib/gui/app/utils/middle-ellipsis';
|
||||||
|
|
||||||
|
describe('Browser: MiddleEllipsis', function() {
|
||||||
|
describe('.middleEllipsis()', function() {
|
||||||
|
it('should throw error if limit < 3', function() {
|
||||||
|
expect(() => {
|
||||||
|
middleEllipsis('No', 2);
|
||||||
|
}).to.throw('middleEllipsis: Limit should be at least 3');
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('given the input length is greater than the limit', function() {
|
||||||
|
it('should always truncate input to an odd length', function() {
|
||||||
|
const alphabet = 'abcdefghijklmnopqrstuvwxyz';
|
||||||
|
expect(middleEllipsis(alphabet, 3)).to.have.lengthOf(3);
|
||||||
|
expect(middleEllipsis(alphabet, 4)).to.have.lengthOf(3);
|
||||||
|
expect(middleEllipsis(alphabet, 5)).to.have.lengthOf(5);
|
||||||
|
expect(middleEllipsis(alphabet, 6)).to.have.lengthOf(5);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return the input if it is within the bounds of limit', function() {
|
||||||
|
expect(middleEllipsis('Hello', 10)).to.equal('Hello');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user