mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-22 04:34:44 +00:00
cdp: move LP.getMarkdown test to lp domain
This commit is contained in:
@@ -982,19 +982,3 @@ test "cdp: STARTUP sessionId" {
|
|||||||
try ctx.expectSentResult(null, .{ .id = 4, .index = 0, .session_id = "STARTUP" });
|
try ctx.expectSentResult(null, .{ .id = 4, .index = 0, .session_id = "STARTUP" });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
test "cdp: LP.getMarkdown" {
|
|
||||||
var ctx = testing.context();
|
|
||||||
defer ctx.deinit();
|
|
||||||
|
|
||||||
const bc = try ctx.loadBrowserContext(.{});
|
|
||||||
_ = try bc.session.createPage();
|
|
||||||
|
|
||||||
try ctx.processMessage(.{
|
|
||||||
.id = 1,
|
|
||||||
.method = "LP.getMarkdown",
|
|
||||||
});
|
|
||||||
|
|
||||||
const result = ctx.client.?.sent.items[0].object.get("result").?.object;
|
|
||||||
try testing.expect(result.get("markdown") != null);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -57,3 +57,20 @@ fn getMarkdown(cmd: anytype) !void {
|
|||||||
.markdown = aw.written(),
|
.markdown = aw.written(),
|
||||||
}, .{});
|
}, .{});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const testing = @import("../testing.zig");
|
||||||
|
test "cdp.lp: getMarkdown" {
|
||||||
|
var ctx = testing.context();
|
||||||
|
defer ctx.deinit();
|
||||||
|
|
||||||
|
const bc = try ctx.loadBrowserContext(.{});
|
||||||
|
_ = try bc.session.createPage();
|
||||||
|
|
||||||
|
try ctx.processMessage(.{
|
||||||
|
.id = 1,
|
||||||
|
.method = "LP.getMarkdown",
|
||||||
|
});
|
||||||
|
|
||||||
|
const result = ctx.client.?.sent.items[0].object.get("result").?.object;
|
||||||
|
try testing.expect(result.get("markdown") != null);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user