Skip to content

Commit 68c4e0e

Browse files
fix main branch
1 parent f6c847f commit 68c4e0e

File tree

2 files changed

+0
-30
lines changed

2 files changed

+0
-30
lines changed

.github/workflows/node.js.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,13 @@ jobs:
2929
- run: npm run build --if-present
3030
- run: npm test
3131

32-
<<<<<<< HEAD
33-
integratio-tests:
34-
name: Unit Tests
35-
runs-on: ubuntu-latest
36-
37-
strategy:
38-
matrix:
39-
node-version: [ 10.x, 12.x, 14.x, 15.x ]
40-
=======
4132
integration-tests:
4233
name: Integration Tests
4334
runs-on: macOS-latest
4435

4536
strategy:
4637
matrix:
4738
node-version: [ 14.x]
48-
>>>>>>> fe4f3efb2af6083a522cfd5abd9e4e7d37977daa
4939
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
5040

5141
steps:
@@ -58,21 +48,6 @@ jobs:
5848
uses: actions/setup-node@v1
5949
with:
6050
node-version: ${{ matrix.node-version }}
61-
<<<<<<< HEAD
62-
- name: Run Android Emulator
63-
run: |
64-
echo "y" | $ANDROID_HOME/tools/bin/sdkmanager --install 'system-images;android-28;google_apis;x86_64'
65-
echo "no" | $ANDROID_HOME/tools/bin/avdmanager create avd -n test_device -k 'system-images;android-28;google_apis;x86_64' --force
66-
echo $ANDROID_HOME/emulator/emulator -list-avds
67-
echo "Starting emulator"
68-
nohup $ANDROID_HOME/emulator/emulator -avd test_device -no-snapshot > /dev/null 2>&1 &
69-
$ANDROID_HOME/platform-tools/adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed | tr -d '\r') ]]; do sleep 1; done; input keyevent 82'
70-
$ANDROID_HOME/platform-tools/adb devices
71-
echo "Emulator started"
72-
- run: npm ci
73-
- run: npm run build --if-present
74-
- run: npm run integration
75-
=======
7651
- name: Download AVD and Start Emulator
7752
run: |
7853
echo "y" | $ANDROID_HOME/tools/bin/sdkmanager --install 'system-images;android-28;google_apis;x86_64'
@@ -94,7 +69,6 @@ jobs:
9469
npm ci
9570
npm run build --if-present
9671
npm run integration
97-
>>>>>>> fe4f3efb2af6083a522cfd5abd9e4e7d37977daa
9872
9973
auto-merge:
10074
if: github.event.pull_request.base.ref == 'main'

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
"main": "./lib/index.js",
66
"scripts": {
77
"test": "mocha -r ts-node/register ./test/unit/*.spec.js --exit",
8-
<<<<<<< HEAD
9-
"integration": "mocha -r ts-node/register ./test/integration/*.spec.js --exit",
10-
=======
118
"integration": "mocha -r ts-node/register ./test/integration/*.spec.js --timeout 90000 --exit",
12-
>>>>>>> fe4f3efb2af6083a522cfd5abd9e4e7d37977daa
139
"build": "npx tsc && npm run copy-files",
1410
"copy-files": "cp -R src/public lib",
1511
"buildAndCopyWeb": "sh buildAndCopyWeb.sh",

0 commit comments

Comments
 (0)