vault/ui/tests/unit/adapters/identity/entity-test.js
Jordan Reimer 483ef19946
Eslint prefer-const (#17864)
* adds prefer-const to eslint config and runs fixer

* reverts unintended change
2022-11-09 15:15:31 -08:00

38 lines
1.1 KiB
JavaScript

import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
import testCases from './_test-cases';
import apiStub from 'vault/tests/helpers/noop-all-api-requests';
module('Unit | Adapter | identity/entity', function (hooks) {
setupTest(hooks);
hooks.beforeEach(function () {
this.server = apiStub();
});
hooks.afterEach(function () {
this.server.shutdown();
});
const cases = testCases('identit/entity');
cases.forEach((testCase) => {
test(`entity#${testCase.adapterMethod}`, function (assert) {
assert.expect(2);
const adapter = this.owner.lookup('adapter:identity/entity');
adapter[testCase.adapterMethod](...testCase.args);
const { url, method } = this.server.handledRequests[0];
assert.strictEqual(
url,
testCase.url,
`${testCase.adapterMethod} calls the correct url: ${testCase.url}`
);
assert.strictEqual(
method,
testCase.method,
`${testCase.adapterMethod} uses the correct http verb: ${testCase.method}`
);
});
});
});