This repository has been archived on 2022-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
jasmine-junit-runner/src/test/javascript/specs/recursiveSpec.js

40 lines
457 B
JavaScript
Raw Normal View History

describe("root", function() {
it("rootTest", function() {
});
describe("child1", function() {
it("child1Test", function() {
});
describe("grandchild", function() {
it("grandchildTest", function() {
});
});
});
describe("child2", function() {
it("child2Test", function() {
});
});
});
describe("root2", function() {
it("root2Test", function() {
});
});