mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
chore(tests): include test for custom user agent
This commit is contained in:
parent
358fe3a8e4
commit
d07168d60b
1 changed files with 9 additions and 0 deletions
9
tests/net/request/user_agent.luau
Normal file
9
tests/net/request/user_agent.luau
Normal file
|
@ -0,0 +1,9 @@
|
|||
local net = require("@lune/net")
|
||||
|
||||
local runtime, version = table.unpack(_VERSION:split(" "))
|
||||
local expectedUserAgent = runtime:lower() .. "/" .. version
|
||||
|
||||
local userAgent: string =
|
||||
net.jsonDecode(net.request("https://www.whatsmyua.info/api/v1/ua").body)[1].ua.rawUa
|
||||
|
||||
assert(userAgent == expectedUserAgent, "Expected user agent to be " .. expectedUserAgent)
|
Loading…
Add table
Reference in a new issue