mirror of https://github.com/status-im/consul.git
ui: Unskip auth-method serializer test (#10878)
During #9617 we added a list view only for AuthMethods, but not a detail view. We did add the Adapter/Serializer that collected/reshaped data for a detail view. The test for this serializer was skipped here, but I'm not sure why. We then added #9845 which began to use this AuthMethod Serializer, but we didn't go back to finish up the skipped test here either. This PR unskips this test and finishes off the test correctly.
This commit is contained in:
parent
5b6d96d27d
commit
8192dde485
|
@ -1,4 +1,4 @@
|
|||
import { module, test, skip } from 'qunit';
|
||||
import { module, test } from 'qunit';
|
||||
import { setupTest } from 'ember-qunit';
|
||||
import { get } from 'consul-ui/tests/helpers/api';
|
||||
import {
|
||||
|
@ -39,7 +39,7 @@ module('Integration | Serializer | auth-method', function(hooks) {
|
|||
assert.deepEqual(actual, expected);
|
||||
});
|
||||
});
|
||||
skip(`respondForQueryRecord returns the correct data for item endpoint when nspace is ${nspace}`, function(assert) {
|
||||
test(`respondForQueryRecord returns the correct data for item endpoint when nspace is ${nspace}`, function(assert) {
|
||||
const serializer = this.owner.lookup('serializer:auth-method');
|
||||
const request = {
|
||||
url: `/v1/acl/auth-method/${id}?dc=${dc}${
|
||||
|
@ -51,7 +51,7 @@ module('Integration | Serializer | auth-method', function(hooks) {
|
|||
Datacenter: dc,
|
||||
[META]: {
|
||||
[DC.toLowerCase()]: dc,
|
||||
[NSPACE.toLowerCase()]: payload.Namespace || undefinedNspace,
|
||||
[NSPACE.toLowerCase()]: nspace || '',
|
||||
},
|
||||
Namespace: payload.Namespace || undefinedNspace,
|
||||
uid: `["${payload.Namespace || undefinedNspace}","${dc}","${id}"]`,
|
||||
|
|
Loading…
Reference in New Issue