aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/check-params/user-subscriptions.ts
Commit message (Collapse)AuthorAgeFilesLines
* Migrate server to ESMChocobozzz2023-08-111-298/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sorry for the very big commit that may lead to git log issues and merge conflicts, but it's a major step forward: * Server can be faster at startup because imports() are async and we can easily lazy import big modules * Angular doesn't seem to support ES import (with .js extension), so we had to correctly organize peertube into a monorepo: * Use yarn workspace feature * Use typescript reference projects for dependencies * Shared projects have been moved into "packages", each one is now a node module (with a dedicated package.json/tsconfig.json) * server/tools have been moved into apps/ and is now a dedicated app bundled and published on NPM so users don't have to build peertube cli tools manually * server/tests have been moved into packages/ so we don't compile them every time we want to run the server * Use isolatedModule option: * Had to move from const enum to const (https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums) * Had to explictely specify "type" imports when used in decorators * Prefer tsx (that uses esbuild under the hood) instead of ts-node to load typescript files (tests with mocha or scripts): * To reduce test complexity as esbuild doesn't support decorator metadata, we only test server files that do not import server models * We still build tests files into js files for a faster CI * Remove unmaintained peertube CLI import script * Removed some barrels to speed up execution (less imports)
* Fix CI using 127.0.0.1 for testsChocobozzz2022-12-121-9/+9
|
* We don't need to import mochaChocobozzz2022-08-171-1/+0
|
* Move test functions outside extra-utilsChocobozzz2021-12-171-3/+1
|
* shared/ typescript types dir server-commandsChocobozzz2021-12-171-1/+1
|
* Refactor requestsChocobozzz2021-07-201-36/+32
|
* Use an object to represent a serverChocobozzz2021-07-201-4/+4
|
* Shorter server command namesChocobozzz2021-07-201-2/+2
|
* Introduce user commandChocobozzz2021-07-201-2/+1
|
* Introduce login commandChocobozzz2021-07-201-3/+2
|
* replace numbers with typed http status codes (#3409)Rigel Kent2020-12-071-25/+26
|
* Move to eslintcontainChocobozzz2020-02-031-1/+1
|
* Use test wrapper exit functionChocobozzz2019-04-241-14/+13
|
* Cleanup testsChocobozzz2019-04-241-10/+3
|
* Shared utils -> extra-utilsChocobozzz2019-04-241-3/+3
| | | | Because they need dev dependencies
* Add user adminFlagsChocobozzz2019-04-151-1/+1
|
* findById -> findByPkChocobozzz2019-02-211-1/+1
|
* Merge branch 'develop' of https://github.com/Chocobozzz/PeerTube into ↵buoyantair2018-11-181-0/+6
|\ | | | | | | move-utils-to-shared
| * Do not host remote AP objectsChocobozzz2018-11-161-0/+5
| |
* | Move utils to /sharedbuoyantair2018-10-291-2/+6
|/ | | | | | | Move utils used by /server/tools/* & /server/tests/**/* into /shared folder. Issue: #1336
* Add ability to search video channelsChocobozzz2018-08-271-0/+40
|
* Add get subscription endpointChocobozzz2018-08-271-4/+55
|
* Add ability to set a name to a channelChocobozzz2018-08-271-13/+6
|
* Add subscriptions endpoints to REST APIChocobozzz2018-08-271-0/+220