Added gitlab ci

This commit is contained in:
2025-02-26 19:12:02 +01:00
parent 8f4ef928a0
commit a4b2114346
3 changed files with 83 additions and 4 deletions

View File

@@ -37,8 +37,14 @@ module.exports = function (config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
restartOnFileChange: true
restartOnFileChange: true,
browsers: ["Chrome"],
customLaunchers: {
Headless_Chrome: {
base: "Chrome",
flags: ["--no-sandbox", "--disable-gpu"],
},
}
});
};