1 2 3 4 5 6 7 8 9 10 11 12 13
extend("test") extend("net") describe("async fetch test", () => { it("should get data", () => { net:fetch("https://example.org", body => { expect_not_equal( body, "peaches") expect_equal( type(body), "string" ) }) }) })