@tetcoin/util
Version:
A collection of useful utilities for @tetcoin
21 lines (19 loc) • 596 B
JavaScript
;
// Copyright 2017-2019 @polkadot/util authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
describe('String padEnd', () => {
let stringEnd;
beforeEach(() => {
stringEnd = String.prototype.padEnd;
String.prototype.padEnd = null;
require('./padEnd');
});
afterEach(() => {
String.prototype.padEnd = stringEnd;
});
it('does padding', () => {
expect('test'.padEnd(8, 'A')).toEqual('testAAAA');
expect('test'.padEnd(8)).toEqual('test ');
});
});