Skip to content

Commit 8ccba0f

Browse files
BotellaAgithub-actions[bot]
authored andcommitted
Apply prepare changes
1 parent ddf9bc5 commit 8ccba0f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

tests/e2e/desktop/app.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let electronApp
99
test.beforeAll(async () => {
1010
// find the latest build in the out directory
1111
const latestBuild = findLatestBuild(
12-
path.join(process.cwd(), "release", "0.0.0")
12+
path.join(process.cwd(), "release", "0.0.0"),
1313
)
1414
console.log("latestBuild", latestBuild)
1515
// parse the directory and find paths and other info

utils/local.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ async function run_script(
107107
command,
108108
args,
109109
expected_response,
110-
timeout_seconds = 30
110+
timeout_seconds = 30,
111111
) {
112112
return new Promise((resolve, reject) => {
113113
setTimeout(() => {
@@ -159,7 +159,7 @@ async function run_back(port, project_folder_path) {
159159
return new Promise(async (resolve, reject) => {
160160
const back_command = path.join(
161161
executable_path(path.join("microservices", "back")),
162-
executable_name("vease-back")
162+
executable_name("vease-back"),
163163
)
164164
const back_port = await get_available_port(port)
165165
const back_args = [
@@ -178,7 +178,7 @@ async function run_viewer(port, data_folder_path) {
178178
return new Promise(async (resolve, reject) => {
179179
const viewer_command = path.join(
180180
executable_path(path.join("microservices", "viewer")),
181-
executable_name("vease-viewer")
181+
executable_name("vease-viewer"),
182182
)
183183
const viewer_port = await get_available_port(port)
184184
const viewer_args = [
@@ -238,7 +238,7 @@ async function run_browser(script_name) {
238238
const output = data.toString()
239239
console.log("NUXT OUTPUT", output)
240240
const portMatch = output.match(
241-
/Accepting\ connections\ at\ http:\/\/localhost:(\d+)/
241+
/Accepting\ connections\ at\ http:\/\/localhost:(\d+)/,
242242
)
243243
if (portMatch) {
244244
resolve(portMatch[1])

0 commit comments

Comments
 (0)