Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
denysoblohin-okta committed Oct 4, 2024
1 parent ce47695 commit 9742995
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/testcafe/spec/BYOL_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import BYOLPageObject from '../framework/page-objects/BYOLPageObject';
import IdentityPageObject from '../framework/page-objects/IdentityPageObject';
import xhrAuthenticatorEnrollDataPhone from '../../../playground/mocks/data/idp/idx/authenticator-enroll-data-phone.json';
import xhrIdentify from '../../../playground/mocks/data/idp/idx/identify.json';
import { ClientFunction, RequestMock, Selector } from 'testcafe';
import { ClientFunction, RequestMock } from 'testcafe';

const mockIdentify = RequestMock()
.onRequestTo('http://localhost:3000/idp/idx/introspect')
Expand All @@ -16,7 +16,7 @@ const mockIdentify = RequestMock()
res.setBody({ 'primaryauth.title': 'Signin', 'primaryauth.submit': 'Submit' });
resolve(res);
}, 500));
})
});

const mock = RequestMock()
.onRequestTo('http://localhost:3000/idp/idx/introspect')
Expand Down

0 comments on commit 9742995

Please sign in to comment.