past rest creator to scenario to also be able to call createSessionRange
This commit is contained in:
parent
abc7c4c3ac
commit
3db32c93d4
1 changed files with 1 additions and 5 deletions
6
start.js
6
start.js
|
@ -49,10 +49,6 @@ async function runTests() {
|
||||||
__dirname
|
__dirname
|
||||||
);
|
);
|
||||||
|
|
||||||
function createRestSession(username, password) {
|
|
||||||
return restCreator.createSession(username, password);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function createSession(username) {
|
async function createSession(username) {
|
||||||
const session = await RiotSession.create(username, options, program.riotUrl, hsUrl);
|
const session = await RiotSession.create(username, options, program.riotUrl, hsUrl);
|
||||||
sessions.push(session);
|
sessions.push(session);
|
||||||
|
@ -61,7 +57,7 @@ async function runTests() {
|
||||||
|
|
||||||
let failure = false;
|
let failure = false;
|
||||||
try {
|
try {
|
||||||
await scenario(createSession, createRestSession);
|
await scenario(createSession, restCreator);
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
failure = true;
|
failure = true;
|
||||||
console.log('failure: ', err);
|
console.log('failure: ', err);
|
||||||
|
|
Loading…
Reference in a new issue