Skip to content

Commit 5d3daa9

Browse files
added test to github actions + selectors improvement
1 parent f64b429 commit 5d3daa9

3 files changed

Lines changed: 122 additions & 78 deletions

File tree

.github/workflows/tests.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,28 @@ jobs:
8080
npm run Control_Panel_test
8181
env:
8282
CI: true
83+
Save_and_Open_File-test:
84+
# The type of runner that the job will run on
85+
runs-on: ubuntu-20.04
86+
container: lironavon/docker-puppeteer-container:14.16.0
87+
env:
88+
CI: true
89+
steps:
90+
- uses: actions/checkout@v1
91+
- name: Use Node.js ${{ matrix.node-version }}
92+
uses: actions/setup-node@v1
93+
with:
94+
node-version: ${{ matrix.node-version }}
95+
cache-dependency-path: frontend/e2e/tests/package-lock.json
96+
- name: Test for Opening and Saving a file
97+
run: |
98+
cd tests/frontend/e2e
99+
#install dependencies
100+
npm ci
101+
# run Control Panel test
102+
npm run Save_Open_File_test
103+
env:
104+
CI: true
83105
Tutorial_1-SmokeTest:
84106
# The type of runner that the job will run on
85107
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)