Odoo18-Base/addons/website/static/tests/tours/unsplash_beacon.js

15 lines
332 B
JavaScript
Raw Permalink Normal View History

2025-03-10 11:12:23 +07:00
odoo.define("website.tour.unsplash_beacon", function (require) {
"use strict";
const tour = require("web_tour.tour");
tour.register("test_unsplash_beacon", {
test: true,
url: "/",
}, [{
content: "Verify whether beacon was sent.",
trigger: 'img[data-beacon="sent"]',
run: () => {}, // This is a check.
}]);
});