May 2019
Beginner to intermediate
456 pages
10h 37m
English
Let's first decipher the generateTestCase.ts file. Notice at the bottom of the generateTestCase.ts file we have the following:
VSS.register(VSS.getContribution().id, context => { let action = new GenerateTestCase(); return action;});VSS.notifyLoadSucceeded();
The first thing we do here is to register an object that this extension exposes to the host frame. We do that using the VSS.register() function. This takes two parameters:
Read now
Unlock full access