mirror of
https://github.com/bevyengine/bevy.git
synced 2026-07-01 08:12:51 -04:00
3ca67f042a
# 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
35 lines
751 B
JavaScript
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,
|
|
},
|
|
};
|