Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
d2bd7c8
cypress install
chriswhilar Sep 12, 2023
88c435f
cypress action
chriswhilar Sep 12, 2023
a86f758
Remove Project folder
chriswhilar Sep 12, 2023
2c8e468
screenshots and videos
chriswhilar Sep 12, 2023
df99bcf
fix syntax
chriswhilar Sep 12, 2023
bcb78d1
fix
chriswhilar Sep 12, 2023
4c6fe9f
file trasnform
chriswhilar Sep 13, 2023
cd5579d
task
chriswhilar Sep 13, 2023
5809f92
move task
chriswhilar Sep 13, 2023
6ac2c77
unindent
chriswhilar Sep 13, 2023
1b5f692
move $
chriswhilar Sep 13, 2023
180dca0
remove
chriswhilar Sep 13, 2023
8f23c1e
structure
chriswhilar Sep 13, 2023
96e5403
use microsoft var subsctitution action
chriswhilar Sep 13, 2023
8456394
space
chriswhilar Sep 13, 2023
8b8033a
Merge branch 'main' into chwhilar/cypress
chriswhilar Sep 13, 2023
90b1379
Use node 16
chriswhilar Sep 13, 2023
2bb4755
fix video path
chriswhilar Sep 13, 2023
6573944
vidoes and screenshots folder
chriswhilar Sep 13, 2023
8af9421
use current path
chriswhilar Sep 13, 2023
2a2dca6
build path
chriswhilar Sep 13, 2023
7721b61
update ci
chriswhilar Sep 13, 2023
0d66c80
build folder
chriswhilar Sep 13, 2023
bbbe649
change order
chriswhilar Sep 13, 2023
3caab11
use download
chriswhilar Sep 13, 2023
8d8abde
fix indent
chriswhilar Sep 13, 2023
3e407bb
save
chriswhilar Sep 13, 2023
ab20a86
meable video
chriswhilar Sep 13, 2023
e44ff68
videos path
chriswhilar Sep 13, 2023
dd3ebb5
use upload
chriswhilar Sep 13, 2023
be2c7c8
clean up
chriswhilar Sep 13, 2023
8854e3b
visit localhost
chriswhilar Sep 14, 2023
334de7e
multiple users with div ids
chriswhilar Sep 14, 2023
9992cb8
Merge branch 'chwhilar/cypress' of https://github.com/Azure-Samples/c…
chriswhilar Sep 14, 2023
939fdbc
click login
chriswhilar Sep 14, 2023
2c9a0e3
wait
chriswhilar Sep 14, 2023
0ccfb40
verify login success
chriswhilar Sep 14, 2023
5f55cce
Fix
chriswhilar Sep 14, 2023
f29e235
break up
chriswhilar Sep 14, 2023
7f466eb
Make user 1 log in
chriswhilar Sep 15, 2023
8aa1437
move files
chriswhilar Sep 15, 2023
1e4c212
click on icon
chriswhilar Sep 15, 2023
9512507
remove find
chriswhilar Sep 15, 2023
752aab8
clena up login
chriswhilar Sep 15, 2023
908cb29
pass 2
chriswhilar Sep 15, 2023
28209f8
check identity
chriswhilar Sep 15, 2023
c700da2
place call
chriswhilar Sep 15, 2023
f4cfc69
show text
chriswhilar Sep 15, 2023
f6849ee
use invoke
chriswhilar Sep 15, 2023
859f409
val
chriswhilar Sep 15, 2023
e98bb6a
print them
chriswhilar Sep 15, 2023
4714804
text
chriswhilar Sep 15, 2023
505be34
async
chriswhilar Sep 15, 2023
97b5a19
await
chriswhilar Sep 15, 2023
89d10a6
res
chriswhilar Sep 15, 2023
88aeca4
log
chriswhilar Sep 15, 2023
9f943f9
typo
chriswhilar Sep 15, 2023
46b8627
use func
chriswhilar Sep 15, 2023
0da33ea
alias
chriswhilar Sep 15, 2023
a13bef3
remove async
chriswhilar Sep 15, 2023
317e319
video call passes
chriswhilar Sep 15, 2023
1793b34
fix local video stream preview
chriswhilar Sep 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: End-to-end tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Use Node v16
uses: actions/setup-node@v3
with:
node-version: 16

- name: Clone repo
uses: actions/checkout@v3

- name: Inject conn string
uses: microsoft/variable-substitution@v1
with:
files: './serverConfig.json'
env:
connectionString: ${{ secrets.CONNECTION_STRING }}

- name: Cypress run
uses: cypress-io/github-action@v6
with:
start: npm run start-local
browser: chrome

- name: Upload screenshots
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots

- name: Upload videos
uses: actions/upload-artifact@v3
if: always()
with:
name: cypress-videos
path: cypress/videos
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,32 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/


# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/dist

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# build dropped
sdk.bundle.js
./config.js
28 changes: 0 additions & 28 deletions Project/.gitignore

This file was deleted.

Loading