consul/ui/packages/consul-ui/tests/unit/utils/keyToArray-test.js
Valeriia Ruban 663a5642c2
[UI]: update Ember to 3.27 (#16227)
* Upgrade to 3.25 via ember-cli-update

* v3.25.3...v3.26.1

* v3.26.1...v3.27.0


Co-authored-by: Michael Klein <michael@firstiwaslike.com>
2023-02-10 13:32:19 -08:00

31 lines
714 B
JavaScript

import { module, test } from 'qunit';
import keyToArray from 'consul-ui/utils/keyToArray';
module('Unit | Utils | keyToArray', function () {
test('it splits a string by a separator, unless the string is the separator', function (assert) {
assert.expect(4);
[
{
test: '/',
expected: [''],
},
{
test: 'hello/world',
expected: ['hello', 'world'],
},
{
test: '/hello/world',
expected: ['', 'hello', 'world'],
},
{
test: '//',
expected: ['', '', ''],
},
].forEach(function (item) {
const actual = keyToArray(item.test);
assert.deepEqual(actual, item.expected);
});
});
});