8670403a67
* Add upload timeout to PictrsConfig
* Bad space 🤔
* Update PictrsConfig upload timeout to include units.
* Add local_subscribers field to CommunityAggregates
struct and schema
* sql format
* local_subscribers test
* fix local_subscribers test
* Revert "fix local_subscribers test"
This reverts commit 4bbac5ce4afe101b2db4b9f099ca772c5ce2932b.
* Revert "local_subscribers test"
This reverts commit 735107e1f7554dfac6e474104eb87047675f11a5.
* Create trigger for local_subscribers
* Rename variable
* re-trigger ci
* re-trigger ci
* Add local_subscribers count to follow.spec.ts
* Rename local_subscribers to subscribers_local
* Add subscribers_local to community_aggregates
* added subscribers_local to the aggregate tests
* Check if person exists on community_follower trigger
* Delete community follows before deleting person
* Update lemmy-js-client in api_tests
* Refactor local_subscriber migration
* fix format
* Move migration files date to now
* Fix test to wait for aggregates to federate
* re-trigger ci
---------
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
35 lines
1.4 KiB
JSON
35 lines
1.4 KiB
JSON
{
|
|
"name": "api_tests",
|
|
"version": "0.0.1",
|
|
"description": "API tests for lemmy backend",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/LemmyNet/lemmy",
|
|
"author": "Dessalines",
|
|
"license": "AGPL-3.0",
|
|
"scripts": {
|
|
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check 'src/**/*.ts'",
|
|
"fix": "prettier --write src && eslint --fix src",
|
|
"api-test": "jest -i follow.spec.ts && jest -i post.spec.ts && jest -i comment.spec.ts && jest -i private_message.spec.ts && jest -i user.spec.ts && jest -i community.spec.ts && jest -i image.spec.ts",
|
|
"api-test-follow": "jest -i follow.spec.ts",
|
|
"api-test-comment": "jest -i comment.spec.ts",
|
|
"api-test-post": "jest -i post.spec.ts",
|
|
"api-test-user": "jest -i user.spec.ts",
|
|
"api-test-community": "jest -i community.spec.ts",
|
|
"api-test-private-message": "jest -i private_message.spec.ts",
|
|
"api-test-image": "jest -i image.spec.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20.10.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
"@typescript-eslint/parser": "^6.14.0",
|
|
"download-file-sync": "^1.0.4",
|
|
"eslint": "^8.55.0",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"jest": "^29.5.0",
|
|
"lemmy-js-client": "0.19.2-alpha.2",
|
|
"prettier": "^3.1.1",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|