2015-11-16 58 views
0

我是新來的NodeJS,甚至更多的實習生試圖在工作中學習測試實習生,但不能由自己教程一步一步開始實習的客戶端,它給我回來總是錯誤:無法獲取實習生來經營自己的教程

C:\testproject\root>node ./node_modules/.bin/intern-client config=tests/intern 
C:\testproject\root\node_modules\.bin\intern-client:2 
basedir=`dirname "$0"` 
    ^
SyntaxError: Unexpected token ILLEGAL 
    at exports.runInThisContext (vm.js:73:16) 
    at Module._compile (module.js:443:25) 
    at Object.Module._extensions..js (module.js:478:10) 
    at Module.load (module.js:355:32) 
    at Function.Module._load (module.js:310:12) 
    at Function.Module.runMain (module.js:501:10) 
    at startup (node.js:129:16) 
    at node.js:814:3 

,我從他們的網站https://github.com/theintern/intern下快速啓動和創建文件夾,通過安裝的NodeJS實習生和增加他們的榜樣進入測試/文件夾後。運行他們的腳本無助於確定他們的教程出了什麼問題。根據他們的例子設置軟件包和非功能套件,但仍然沒有成功。

//... 
loader: { 
    // Packages that should be registered with the loader in each testing environment 
    packages: [ { name: 'root', location: '.' } ], 
    // map: { 'intern-selftest': { dojo: 'intern-selftest/node_modules/dojo' } } 
}, 

// Non-functional test suite(s) to run in each browser 
suites: [ 'root/tests/intern' ], 
//... 

我核爆整個項目的幾個時間,使用的JSLint和jshint和有沒有語法錯誤了。 也嘗試了一些不成功的組合有:

的https://github.com/theintern/intern-tutorial

的https://gist.github.com/neonstalwart/6630466

任何意見或真正可用的工作示例?

在此先感謝。

回答

2

你爲什麼把node在指令開始?沒有文件說要這樣做。你正在嘗試使用Node.js運行一個shell腳本(顯然,實習生沒有創建這個shell腳本,你的安裝程序做到了),因爲JavaScript和sh不是同一種語言,所以這將永遠不會工作。