I hereby claim:
- I am eltoroit on github.
- I am eltoroit (https://keybase.io/eltoroit) on keybase.
- I have a public key whose fingerprint is 2D86 08E5 629B 121F A4CE FD8D AD29 4D18 ADE3 DC81
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [{ | |
"label": "ELTOROIT PushWhenBuild", | |
"type": "shell", | |
"command": "sfdx force:source:push --json", | |
"group": { | |
"kind": "build", |
<apex:page > | |
<apex:includeLightning /> | |
<div id="auraLightning"></div> | |
<hr /> | |
<hr /> | |
<hr /> | |
<div id="lwcLightning"></div> | |
<script> |
function processStep(step) { | |
return new Promise((resolve, reject) => { | |
// Process step here | |
resolve(); | |
}); | |
} | |
function processStepList(steps) { | |
return new Promise((resolve, reject) => { | |
if (steps.length > 0) { |
try { | |
// Perform DML here | |
System.assert(false, 'DmlException expected'); | |
} catch (DmlException dmlEx) { | |
String msgActual = dmlEx.getMessage(); | |
String msgExpected = 'FIELD_CUSTOM_VALIDATION_EXCEPTION, Must enter valid amount'; | |
System.assert(msgActual.indexOf(msgExpected) >= 0, 'Message does contain expected text'); | |
} catch (Exception ex) { | |
System.assert(false, 'Different exception was expected'); | |
} |
var apexBridge = component.find("ApexBridge"); | |
apexBridge.callApex({ | |
component: component, | |
data: { | |
operation: "FindAccounts" | |
}, | |
callBackMethod: function (data) { | |
console.log("Data Returned", data); | |
} | |
}); |