You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/tests/unit/utils/update-array-object-test.js

32 lines
718 B

import updateArrayObject from 'consul-ui/utils/update-array-object';
import { module, test } from 'qunit';
module('Unit | Utility | update array object', function() {
// Replace this with your real tests.
test('it updates the correct item in the array', function(assert) {
const expected = {
data: {
id: '2',
name: 'expected',
},
};
const arr = [
{
data: {
id: '1',
name: 'name',
},
},
{
data: {
id: '2',
name: '-',
},
},
];
const actual = updateArrayObject(arr, expected, 'id');
assert.ok(actual, expected);
assert.equal(arr[1].name, expected.name);
});
});