fix: stealth thing

This commit is contained in:
2023-10-03 17:59:53 -05:00
parent 70ec5f5273
commit 3f2a4447a8
3 changed files with 11 additions and 5 deletions

View File

@@ -92,8 +92,14 @@ spec = describe "Plugin" do
describe "Stealth" do
test "install" do
pup <- Pup.new
void $ liftEffect $ Pup.Stealth.install pup
pup' <- liftEffect $ Pup.Stealth.install pup
b <- Pup.launch_ pup'
p <- Pup.Page.new b
pure unit
describe "AnonymousUserAgent" do
test "install" do
pup <- Pup.new
void $ liftEffect $ Pup.AnonUA.install pup
pup' <- liftEffect $ Pup.AnonUA.install pup
b <- Pup.launch_ pup'
p <- Pup.Page.new b
pure unit