mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 17:12:55 +02:00
9 lines
249 B
JavaScript
9 lines
249 B
JavaScript
loadPage("file:///res/html/misc/blank.html");
|
|
|
|
afterInitialPageLoad(() => {
|
|
test("Basic functionality", () => {
|
|
expect(document.documentElement).not.toBe(null);
|
|
expect(document.documentElement.nodeName).toBe("html");
|
|
});
|
|
});
|