Skip to content
Snippets Groups Projects
Commit 3ac4b1ab authored by Jeremy Kersten's avatar Jeremy Kersten
Browse files

[FIX] website_sale[_event]: add timout for tour.

Seems like this tour crash randomly due to default 10000 ms.

This button, in some case, seems to take more than 10000ms (slow server? slow
connection ?) to validate the order (cretae invoice, generate PDF, send mail, ...)

It is a test to see if increase the timeout could decrease the risk of false
positive on the runbot.
parent 9bf1f97d
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,7 @@ tour.register('event_buy_tickets', {
{
content: "Last step",
trigger: '.oe_website_sale:contains("Thank you for your order")',
timeout: 30000,
}
]
);
......
......@@ -76,6 +76,7 @@ tour.register('shop_buy_product', {
{
content: "finish",
trigger: '.oe_website_sale:contains("Thank you for your order")',
timeout: 30000,
}
]
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment