SwikiCodeRobot @> #(test node8debug)
or open the Swiki Testing Tool on "node8debug" testset
"Evaluating first chunk of the test set"
(Smalltalk includesKey: #Smalltalk) ifFalse: [
    self print: 'Require s8 execution environment.'.
    self abort
].
(Smalltalk includesKey: #NodeJS) ifFalse: [
    self print: 'Require NodeJS framework.'.
    self abort
].
(Smalltalk global basicAt: #Java ifAbsent: []) toString = 'function Java() { [native code] }'
        ifTrue: [ ^#node8 ].
self print: 'Require node8 execution environment.'.
self abort
 |