mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-24 09:40:28 -06:00
Fix tests
This commit is contained in:
parent
6567e5a796
commit
c24aac6bc7
@ -13,7 +13,7 @@ perl -0777 -i -pe 's#proxy:(\n\s+)enabled: false\n\s+url: ""#proxy:$1enabled: t
|
||||
|
||||
if [ "$1" = "misc" ]; then
|
||||
npm run build -- --light
|
||||
mocha --timeout 5000 --exit --require ts-node/register --require tsconfig-paths/register --bail server/tests/client.ts \
|
||||
mocha --timeout 5000 --exit --require ts-node/register --files --require tsconfig-paths/register --bail server/tests/client.ts \
|
||||
server/tests/feeds/index.ts \
|
||||
server/tests/misc-endpoints.ts \
|
||||
server/tests/helpers/index.ts \
|
||||
|
@ -6,5 +6,5 @@ redundancyFiles=$(find server/tests/api/redundancy -type f | grep -v index.ts |
|
||||
activitypubFiles=$(find server/tests/api/activitypub -type f | grep -v index.ts | xargs echo)
|
||||
|
||||
MOCHA_PARALLEL=true npm run mocha -- --parallel --jobs $1 --timeout 30000 --exit \
|
||||
--require ts-node/register --require tsconfig-paths/register --bail \
|
||||
--require ts-node/register --files --require tsconfig-paths/register --bail \
|
||||
$redundancyFiles $activitypubFiles
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { RegisteredPlugin } from '../lib/plugins/plugin-manager'
|
||||
import { RegisteredPlugin } from '../../lib/plugins/plugin-manager'
|
||||
import {
|
||||
MAccountDefault,
|
||||
MActorAccountChannelId,
|
||||
@ -18,15 +18,15 @@ import {
|
||||
MVideoShareActor,
|
||||
MVideoThumbnail,
|
||||
MVideoWithRights
|
||||
} from '../types/models'
|
||||
import { MVideoPlaylistFull, MVideoPlaylistFullSummary } from '../types/models/video/video-playlist'
|
||||
} from '../../types/models'
|
||||
import { MVideoPlaylistFull, MVideoPlaylistFullSummary } from '../../types/models/video/video-playlist'
|
||||
import { MVideoImportDefault } from '@server/types/models/video/video-import'
|
||||
import { MAccountBlocklist, MActorUrl, MStreamingPlaylist, MVideoFile, MVideoImmutable } from '@server/types/models'
|
||||
import { MVideoPlaylistElement, MVideoPlaylistElementVideoUrlPlaylistPrivacy } from '@server/types/models/video/video-playlist-element'
|
||||
import { MAccountVideoRateAccountVideo } from '@server/types/models/video/video-rate'
|
||||
import { MVideoChangeOwnershipFull } from '../types/models/video/video-change-ownership'
|
||||
import { MVideoChangeOwnershipFull } from '../../types/models/video/video-change-ownership'
|
||||
import { MPlugin, MServer } from '@server/types/models/server'
|
||||
import { MServerBlocklist } from '../types/models/server/server-blocklist'
|
||||
import { MServerBlocklist } from '../../types/models/server/server-blocklist'
|
||||
import { MOAuthTokenUser } from '@server/types/models/oauth/oauth-token'
|
||||
import { UserRole } from '@shared/models'
|
||||
import { RegisterServerAuthExternalOptions } from '@shared/models/plugins/register-server-auth.model'
|
@ -28,6 +28,7 @@
|
||||
"@shared/*": [ "shared/*" ]
|
||||
}
|
||||
},
|
||||
"include": [ "." ],
|
||||
"exclude": [
|
||||
"server/tools/",
|
||||
"node_modules",
|
||||
|
Loading…
Reference in New Issue
Block a user