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

ci: Add integration tests for Parse Server #224

Merged
merged 33 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
91dd798
add integration test
vahidalizad Oct 13, 2024
a11e409
revert parse js sdk version
vahidalizad Oct 16, 2024
09fc315
remove unused configs in integration tests setup
vahidalizad Oct 16, 2024
7add3cf
Merge branch 'master' into integration-test
vahidalizad Oct 22, 2024
90cda17
add index to coverage
vahidalizad Oct 22, 2024
7599610
Update package.json
mtrezza Oct 22, 2024
1c4682f
refactor server integration
mtrezza Oct 22, 2024
cf76ac9
remove server options
mtrezza Oct 22, 2024
782d598
fix lint
mtrezza Oct 22, 2024
763f5ef
fix lint
mtrezza Oct 22, 2024
2fb1e14
regenerate package-lock
mtrezza Oct 22, 2024
ac98bb4
upgrade aws sdk
mtrezza Oct 22, 2024
4b3228c
Merge branch 'master' into integration-test
mtrezza Oct 22, 2024
2270c56
clean up tests
mtrezza Oct 22, 2024
6726c96
remove lib from nyc
mtrezza Oct 22, 2024
6a02150
Revert "remove lib from nyc"
mtrezza Oct 22, 2024
0b7ea2a
rename tests
mtrezza Oct 22, 2024
70e55db
fix ts errors
mtrezza Oct 22, 2024
aa5d07e
refactor integr test
mtrezza Oct 22, 2024
9457f2e
remove conformance tests
mtrezza Oct 22, 2024
291d9dd
Update package-lock.json
mtrezza Oct 22, 2024
ae0930d
add parse server compat
mtrezza Oct 22, 2024
dd95fe0
fix testing env var
mtrezza Oct 22, 2024
cd454a9
Update package-lock.json
mtrezza Oct 22, 2024
31f0715
Update .gitignore
mtrezza Oct 22, 2024
2b21b55
Update README.md
mtrezza Oct 22, 2024
c3fcc29
add parse server matrix
mtrezza Oct 22, 2024
5f1cf60
Update jasmine.js
mtrezza Oct 22, 2024
a21f2f9
Update jasmine.js
mtrezza Oct 22, 2024
957b085
fix lint
mtrezza Oct 22, 2024
3ff1bf8
remove parse server 5 test
mtrezza Oct 22, 2024
d95d10e
Update ci.yml
mtrezza Oct 22, 2024
fe0e6ab
remove prettier
mtrezza Oct 22, 2024
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
4 changes: 3 additions & 1 deletion .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"text-summary"
],
"include": [
"src/**/*.js"
"src/**/*.js",
"lib/**/*.js",
mtrezza marked this conversation as resolved.
Show resolved Hide resolved
"index.js"
],
"exclude": [
"**/spec/**"
Expand Down
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 100
}
Loading
Loading