This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "App", | |
| "version": "v2.0.0", | |
| "description": "desc", | |
| "homepage": "https://app.com/", | |
| "main": "src/main.js", | |
| "scripts": { | |
| "start": "DEV=true electron src/main.js ", | |
| "test": "echo \"Error: no test specified\" && exit 1", | |
| "dist:win": "electron-builder --win", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > [email protected] test /home/cervik/Documents/dev/projectOrigin | |
| > wdio wdio.conf.js | |
| ------------------------------------------------------------------ | |
| [chrome #0-0] Session ID: de8fc731c6bbab6314142afbbb7be813 | |
| [chrome #0-0] Spec: /home/cervik/Documents/dev/projectOrigin/test/login/LoginForm.js | |
| [chrome #0-0] Running: chrome | |
| [chrome #0-0] | |
| [chrome #0-0] LoginForm | |
| [chrome #0-0] 1) is visible |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const request = require('request'); | |
| const fs = require('fs'); | |
| const log = require('electron-log'); | |
| const electron = require('electron'); | |
| const {spawn} = require('child_process'); | |
| const {Utils} = require('../Utils'); | |
| const nameMap = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package components; | |
| import org.json.simple.JSONObject; | |
| import org.json.simple.parser.JSONParser; | |
| import org.json.simple.parser.ParseException; | |
| import org.testng.annotations.DataProvider; | |
| import java.io.File; | |
| import java.io.FileReader; | |
| import java.io.IOException; |
NewerOlder