I\'m hoping somebody could explain to me what \"it\" does (is used for) in AngularJS or just plain JavaScript (I\'m not sure if it\'s specific to Angular). This, turns out, is a
The it(...) function defines a test case (aka a "spec").
it(...)
describe("A suite", function() { it("contains spec with an expectation", function() { expect(true).toBe(true); }); });
Note that AngularJS E2E Testing...
... uses Jasmine for its test syntax.