Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Improved the collections test code #428

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
0ff5010
Merge pull request #377 from evolvedbinary/circleci-project-setup
adamretter Jun 17, 2021
edd8fe0
fix: webpack no longer bundle polyfills
ccheraa Jun 30, 2021
0914ca8
updated theia to 1.14.0
ccheraa Jun 30, 2021
9a0f60e
update theia to 1.15.0
ccheraa Jul 2, 2021
8879013
Merge pull request #448 from ccheraa/update-dependencies
duncdrum Jul 5, 2021
842f41f
hotfix(ci): use chrome headless
duncdrum Jul 5, 2021
fab2bb3
hptfix(c): add chrome
duncdrum Jul 5, 2021
359be59
fix(ci): add chrome deps
duncdrum Jul 5, 2021
1b7e664
chore(deps-dev): bump cypress from 7.6.0 to 8.0.0
dependabot[bot] Jul 20, 2021
aa11e78
fix(ci): adjust cypress run syntax
duncdrum Jul 20, 2021
fa8128e
Merge pull request #456 from evolvedbinary/dependabot/npm_and_yarn/cy…
duncdrum Jul 20, 2021
cf330bd
fix: electron test don't work anymore
ccheraa Jul 19, 2021
860d083
use real process variable instead of a placeholder
ccheraa Jul 20, 2021
732575a
updated packages
ccheraa Jul 21, 2021
a6b656f
Merge pull request #457 from ccheraa/update-dependencies
adamretter Jul 22, 2021
01d98d6
added drag and drop test
ccheraa Jul 23, 2021
73bcf63
move drag and drop tests to documents and collections specs
ccheraa Jul 23, 2021
17230f0
fix: node id not updated after renaming
ccheraa Jul 23, 2021
0a74559
added drag and drop upload tests
ccheraa Jul 23, 2021
fd9318b
split upload tests between document and collection
ccheraa Jun 18, 2021
800fa00
added upload dialog test
ccheraa Jun 18, 2021
e9b9576
expand a collapsed collection when creating items
ccheraa Jun 10, 2021
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
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@ jobs:
# TODO (DP) slim this down
- run: |
sudo apt-get update
sudo apt-get --yes install libx11-dev libxkbfile-dev libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb
sudo apt-get --yes install fonts-liberation libx11-dev libxkbfile-dev libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xdg-utils xvfb

# - setup_remote_docker:
# version: 20.10.2
# docker_layer_caching: false
- run:
name: get and install chrome
command: |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
- run:
name: install dockerize
command: wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && sudo tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
Expand Down Expand Up @@ -68,7 +73,7 @@ jobs:
- run:
working_directory: .
# command: npx cypress run --config defaultCommandTimeout=58000
command: npx cypress run
command: npx cypress run -b chrome
no_output_timeout: 2m
workflows:
browser_build:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ sudo yum install -y rpm-build
```

#### For Testing
* [cypress.js](https://www.cypress.io) ` >= 7.4.0`.
* [cypress.js](https://www.cypress.io) ` >= 8.0.0`.



Expand Down
24 changes: 12 additions & 12 deletions browser-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
"name": "browser-app",
"version": "1.1.0",
"dependencies": {
"@theia/core": "^1.13.0",
"@theia/filesystem": "^1.13.0",
"@theia/workspace": "^1.13.0",
"@theia/preferences": "^1.13.0",
"@theia/navigator": "^1.13.0",
"@theia/process": "^1.13.0",
"@theia/terminal": "^1.13.0",
"@theia/editor": "^1.13.0",
"@theia/markers": "^1.13.0",
"@theia/monaco": "^1.13.0",
"@theia/messages": "^1.13.0",
"@theia/core": "^1.15.0",
"@theia/filesystem": "^1.15.0",
"@theia/workspace": "^1.15.0",
"@theia/preferences": "^1.15.0",
"@theia/navigator": "^1.15.0",
"@theia/process": "^1.15.0",
"@theia/terminal": "^1.15.0",
"@theia/editor": "^1.15.0",
"@theia/markers": "^1.15.0",
"@theia/monaco": "^1.15.0",
"@theia/messages": "^1.15.0",
"fusion-studio-extension": "1.2.0"
},
"devDependencies": {
"@theia/cli": "^1.13.0"
"@theia/cli": "^1.15.0"
},
"scripts": {
"prepare": "theia build --mode development",
Expand Down
Loading