etherpad-lite/src/tests/frontend/specs/leavePadTest.js

10 lines
383 B
JavaScript

describe("Leave Pad Functionality", function () {
beforeEach(async function () {
await helper.newPad(); // Open a new pad before each test
});
it("should leave the pad and go back to the homepage", async function () {
await helper.leavePad(); // Clicks the exit button
expect(window.location.pathname).toBe("/"); // Confirms we are on the homepage
});
});