Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
90d19a7
removing old cypress project
Apr 7, 2021
44a2b8c
husky, eslint, prettier, package.json and cypress config
Apr 7, 2021
48aaafe
eslint and husky config changes
Apr 7, 2021
68574d1
package.json changes
Apr 7, 2021
c1f9a1f
package.json changes
Apr 7, 2021
56888ec
package.json changes
Apr 7, 2021
671d698
package.json changes
Apr 7, 2021
7fdd575
package.json changes
Apr 7, 2021
cb6018a
package.json changes
Apr 7, 2021
d0dff30
package.json changes
Apr 7, 2021
9855a51
test
Apr 7, 2021
7fc0450
package.json changes
Apr 7, 2021
b953ef1
eslint and package.json changes
Apr 7, 2021
7d495aa
cypress configs
Apr 7, 2021
59230ce
cypress configs
Apr 7, 2021
f987f3a
cypress configs
Apr 7, 2021
d188a3e
login-spec
Apr 7, 2021
b2decbc
test gradle configuration for github
Apr 7, 2021
1d7a5eb
test gradle configuration for github
Apr 7, 2021
d8b6edd
logout.spec
Apr 7, 2021
b98bfd9
permissions.spec
Apr 7, 2021
9bb5d34
permissions.spec
Apr 7, 2021
84512bd
lint / prettier changes
Apr 8, 2021
5070c84
package.json and gitub env config changes
Apr 9, 2021
0c9a0f3
credentials test in progress
Apr 14, 2021
236e607
tests
Apr 21, 2021
b2a6402
Merge branch 'master' into cypress-from-beginning
szymon-owczarzak Apr 21, 2021
66917e0
Merge branch 'master' into cypress-from-beginning
Apr 21, 2021
07310e9
deleting old test files
Apr 21, 2021
9bf14da
docs update
Apr 22, 2021
230c696
delete cred
Apr 22, 2021
cd5cc18
delete cred
Apr 22, 2021
a216cba
credentials test in progress
Apr 26, 2021
a564a8a
tests
May 11, 2021
61e93d0
tests
May 11, 2021
4b5d96d
tests
May 12, 2021
63ac820
tests update
Aug 26, 2021
3685005
plugins index.js changes
Aug 27, 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
18,526 changes: 18,509 additions & 17 deletions cogboard-webapp/package-lock.json

Large diffs are not rendered by default.

Binary file modified docs/images/master-branch-protection.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 91 additions & 0 deletions functional/cypress-tests/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"airbnb",
"plugin:cypress/recommended",
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true,
"experimentalObjectRestSpread": true
}
},
"rules": {
"import/extensions": "off",
"import/prefer-default-export": 0,
"no-shadow": 1,
"no-unused-expressions": [
2,
{
"allowShortCircuit": true
}
],
"no-underscore-dangle": [
2,
{
"allow": [
"_satellite"
]
}
],
"no-unused-vars": 1,
"import/order": 1,
"consistent-return": 0,
"no-console": [
1,
{
"allow": [
"warn",
"error"
]
}
],
"no-debugger": 1,
"padding-line-between-statements": [
1,
{
"blankLine": "always",
"prev": "*",
"next": "return"
},
{
"blankLine": "always",
"prev": [
"const",
"let",
"var"
],
"next": "*"
},
{
"blankLine": "any",
"prev": [
"const",
"let",
"var"
],
"next": [
"const",
"let",
"var"
]
}
],
//Cypress
"cypress/no-assigning-return-values": "error",
"cypress/no-unnecessary-waiting": "off",
"cypress/assertion-before-screenshot": "warn",
"cypress/no-force": "warn",
"cypress/no-async-tests": "error"
// Cypress -- end
}
}
21 changes: 0 additions & 21 deletions functional/cypress-tests/.eslintrc.json

This file was deleted.

11 changes: 8 additions & 3 deletions functional/cypress-tests/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"singleQuote": true
}
{
"endOfLine":"auto",
"tabWidth":2,
"arrowParens":"avoid",
"singleQuote":true,
"printWidth":120,
"trailingComma":"all"
}
103 changes: 0 additions & 103 deletions functional/cypress-tests/README.md

This file was deleted.

6 changes: 3 additions & 3 deletions functional/cypress-tests/cypress.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"baseUrl": "http://localhost",
"video": false,
"defaultCommandTimeout": 10000,
"env": {
"username": "admin",
"password": "admin"
},
"video": false,
"defaultCommandTimeout": 10000
}
}
9 changes: 0 additions & 9 deletions functional/cypress-tests/cypress/config/dev.json

This file was deleted.

10 changes: 0 additions & 10 deletions functional/cypress-tests/cypress/config/local.json

This file was deleted.

9 changes: 0 additions & 9 deletions functional/cypress-tests/cypress/config/travis.json

This file was deleted.

1 change: 0 additions & 1 deletion functional/cypress-tests/cypress/cypress.json

This file was deleted.

12 changes: 0 additions & 12 deletions functional/cypress-tests/cypress/fixtures/Dashboard.js

This file was deleted.

Loading