Я попытался отключить блок описания пакета, написав xdescribe, и Жасмин показывает мне предупреждение «неизвестный идентификатор xdescribe», то же самое для «xit», помогите пожалуйста !!
describe("Pending specs", function () {
xit("can be declared 'xit'", function () {
expect(true).toBe(false);
});
it("can be declared with 'it' but without a function");
it("can be declared by calling 'pending' in the spec body", function () {
expect(true).toBe(false); pending(); });
});
});
// my config.js
exports.config = {
//seleniumAddress: 'localhost: 4444 / wd / hub';,
specs: ['nestedDescribe.js']
};