Files
bevy/.github/start-mobile-example/mobile.conf.js
François Mockers 3ca67f042a Update npm test dependencies (#21372)
# Objective

- We use npm for tests on wasm and on mobile
- Dependencies haven't been updated in... a long time

## Solution

- Update them

## Testing

- I ran both in local and it worked
2025-10-15 07:09:34 +00:00

35 lines
751 B
JavaScript

exports.config = {
user: process.env.BROWSERSTACK_USERNAME,
key: process.env.BROWSERSTACK_ACCESS_KEY,
updateJob: false,
specs: ["./specs/screenshot.js"],
exclude: [],
capabilities: [
{
project: "Bevy Example",
build: "Bevy Example Runner",
name: "run_example",
device: process.env.DEVICE || "Samsung Galaxy S23",
os_version: process.env.OS_VERSION || "13.0",
app: process.env.BROWSERSTACK_APP_ID,
"browserstack.debug": true,
orientation: "PORTRAIT",
},
],
logLevel: "info",
coloredLogs: true,
baseUrl: "",
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
framework: "mocha",
mochaOpts: {
ui: "bdd",
timeout: 20000,
},
};