12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
describe("something", function() {
|
|
it("should be true", function() {
|
|
yes();
|
|
expect(true).toEqual(true);
|
|
});
|
|
|
|
it("should so something else", function() {
|
|
expect(true).toEqual(true);
|
|
});
|
|
});
|
|
|