| Note | To detect platform where the system is running evaluate: | 
"Evaluating first chunk of the nodeJS test set"
self print: '// evaluating... test[nodeJS] index'.
(Smalltalk includesKey: #Smalltalk) ifFalse: [
    self print: 'Require s8 execution environment.'.
    self abort
].
(Smalltalk includesKey: #NodeJS) ifFalse: [
    self print: 'Require NodeJS framework.'.
    self abort
].
 |