Client.js
"use strict";
class Client {
}
describe("Client", function() {
require('../client');
beforeEach(function() {
client = new Client();
});
it("should have a foo", function() {
expect(client.foo).toEqual(1);
});
});
Jasmine无法找到班级Client
。如何加载我的课程?