CASH-176
CASH-176 Removed console.logs from license-plate-lookup.spec.js
This commit is contained in:
parent
63a7fd71ea
commit
f9b043ca66
4 changed files with 12 additions and 10 deletions
|
|
@ -158,8 +158,8 @@ export default {
|
|||
box-shadow: none;
|
||||
}
|
||||
&:focus-visible span {
|
||||
outline: 2px solid #005FCC;
|
||||
border-radius: .25rem;
|
||||
outline: 2px solid #005fcc;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
&.delay {
|
||||
// fixes flicker while transitioning between states
|
||||
|
|
|
|||
|
|
@ -361,7 +361,11 @@ export default {
|
|||
const phone = this.customerQuestions.emailOrSms.replace(/[()]/g, "");
|
||||
await this.dispatchStoreAction(storeActions.SAVE_PHONE_NUMBER, phone, false);
|
||||
} else {
|
||||
await this.dispatchStoreAction(storeActions.SAVE_EMAIL, this.customerQuestions.emailOrSms, false);
|
||||
await this.dispatchStoreAction(
|
||||
storeActions.SAVE_EMAIL,
|
||||
this.customerQuestions.emailOrSms,
|
||||
false
|
||||
);
|
||||
}
|
||||
|
||||
await this.dispatchStoreAction(
|
||||
|
|
|
|||
|
|
@ -625,8 +625,6 @@ function setupMocks({
|
|||
licensePlate = null, //"TESTPLATE",
|
||||
emailAddress = null, //"test@test.com"
|
||||
}) {
|
||||
console.log("======================================================================================================" + emailAddress);
|
||||
console.log("serviceLocationZipCode" + serviceLocationZipCode);
|
||||
store.commit(storeMutations.RESET_STATE);
|
||||
//Mock api responses
|
||||
const apiResponses = {
|
||||
|
|
|
|||
|
|
@ -1293,16 +1293,16 @@ export const actions = {
|
|||
{ payload: { userId, deviceId, sessionKey, pageName, experiment }, pageNameToLog }
|
||||
) {
|
||||
const experiments = deepClone(context.getters.applicationUser.experiments);
|
||||
const experimentToMarkAsExposed = experiments.find(ex => {
|
||||
const experimentToMarkAsExposed = experiments.find((ex) => {
|
||||
ex.universeId == experiment.universeId &&
|
||||
ex.testId == experiment.testIde &&
|
||||
ex.variationId == experiment.variationId &&
|
||||
ex.assignmentId == experiment.assignmentId
|
||||
ex.testId == experiment.testIde &&
|
||||
ex.variationId == experiment.variationId &&
|
||||
ex.assignmentId == experiment.assignmentId;
|
||||
});
|
||||
if (experimentToMarkAsExposed) {
|
||||
experimentToMarkAsExposed.isExposed = true;
|
||||
}
|
||||
|
||||
|
||||
context.commit(storeMutations.UPDATE_EXPERIMENTS, experiments);
|
||||
|
||||
return globalMethods.callHttpClient({
|
||||
|
|
|
|||
Loading…
Reference in a new issue