You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding the questions I sent you I opened an issue to keep track of the discussion and let you decide if these make sense:
Being pretty newbie with JS it was not directly clear to me that I needed to require nikita first. I found it out quickly. Maybe just a mention of it in the text may be needed.
In the External actions part you have this code:
// Dependenciesconstassert=require('assert');(async()=>{// New Nikita sessionvar{status}=awaitnikita.call('./lib/touch')assert.equal(status,true)})()
Using the code as it is does not work. As pointed out by Sergei we need to add a require statement for the path
// Dependenciesconstassert=require('assert');(async()=>{// New Nikita sessionvar{status}=awaitnikita.call(require('./lib/touch'))assert.equal(status,true)})()
The text was updated successfully, but these errors were encountered:
Sergei,
Regarding the questions I sent you I opened an issue to keep track of the discussion and let you decide if these make sense:
Being pretty newbie with JS it was not directly clear to me that I needed to
require
nikita first. I found it out quickly. Maybe just a mention of it in the text may be needed.In the External actions part you have this code:
Using the code as it is does not work. As pointed out by Sergei we need to add a
require
statement for the pathThe text was updated successfully, but these errors were encountered: