aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/notifications/comments-notifications.ts
Commit message (Collapse)AuthorAgeFilesLines
* Migrate server to ESMChocobozzz2023-08-111-305/+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 missing wait jobsChocobozzz2023-05-191-1/+1
|
* Fix CIChocobozzz2023-02-171-3/+2
|
* Fix CI using 127.0.0.1 for testsChocobozzz2022-12-121-2/+2
|
* Increase timeoutsChocobozzz2022-11-291-15/+15
|
* Cleanup tests importsChocobozzz2022-08-171-3/+1
|
* We don't need to import mochaChocobozzz2022-08-171-1/+0
|
* Move test functions outside extra-utilsChocobozzz2021-12-171-5/+3
|
* shared/ typescript types dir server-commandsChocobozzz2021-12-171-1/+1
|
* Add ability to search by host in serverChocobozzz2021-07-271-30/+34
|
* Reorganize importsChocobozzz2021-07-201-1/+1
|
* Use an object to represent a serverChocobozzz2021-07-201-2/+2
|
* Shorter server command namesChocobozzz2021-07-201-46/+46
|
* Introduce videos commandChocobozzz2021-07-201-31/+15
|
* Introduce user commandChocobozzz2021-07-201-12/+2
|
* Introduce comments commandChocobozzz2021-07-201-69/+54
|
* Introduce blocklist commandChocobozzz2021-07-201-6/+4
|
* Cleanup shared modelsChocobozzz2021-05-111-10/+15
|
* Increase notifications comment test timeoutChocobozzz2020-12-301-8/+8
|
* Add html test for mentions tooChocobozzz2020-11-171-10/+24
|
* Add email markdown testsChocobozzz2020-11-171-0/+22
|
* Update server dependenciesChocobozzz2020-06-171-11/+11
|
* Split notification testsChocobozzz2020-06-161-0/+309