我在gem文件中添加gem "jasmine"
这一行,然后执行这两个cmds
bundle
rails generate jasmine:install
它的工作正常。我的问题是,我的testing.js
文件没有添加到jasmine文件中。
describe("Hello world", function() {
it("says hello", function() {
expect(helloWorld()).toEqual("Hello world!");
});
});
我的代码,我的.js文件位于public / javascript / testing.js
function helloWorld() {
return "Hello world!";
}
错误消息是
ReferenceError:
中未定义helloWorldhttp://localhost:8888/__spec__/tesfing_spec.js
(第4行)
我将jasmine.yml文件中的路径添加为
src_files:
- "public/javascript/testing.js"
尽管它不起作用。谢谢你的回答。