1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00

Rename studio to editor

This commit is contained in:
Chocobozzz 2022-03-22 16:58:49 +01:00
parent 1808a1f8e4
commit 92e66e04f7
No known key found for this signature in database
GPG key ID: 583A612D890159BE
81 changed files with 368 additions and 370 deletions

View file

@ -7,7 +7,7 @@ import {
checkMyVideoImportIsFinished,
checkNewActorFollow,
checkNewVideoFromSubscription,
checkVideoEditionIsFinished,
checkVideoStudioEditionIsFinished,
checkVideoIsPublished,
FIXTURE_URLS,
MockSmtpServer,
@ -16,7 +16,7 @@ import {
} from '@server/tests/shared'
import { wait } from '@shared/core-utils'
import { buildUUID } from '@shared/extra-utils'
import { UserNotification, UserNotificationType, VideoEditorTask, VideoPrivacy } from '@shared/models'
import { UserNotification, UserNotificationType, VideoStudioTask, VideoPrivacy } from '@shared/models'
import { cleanupTests, PeerTubeServer, waitJobs } from '@shared/server-commands'
const expect = chai.expect
@ -323,7 +323,7 @@ describe('Test user notifications', function () {
})
})
describe('Video editor', function () {
describe('Video studio', function () {
let baseParams: CheckerBaseParams
before(() => {
@ -335,7 +335,7 @@ describe('Test user notifications', function () {
}
})
it('Should send a notification after editor edition', async function () {
it('Should send a notification after studio edition', async function () {
this.timeout(240000)
const { name, shortUUID, id } = await uploadRandomVideoOnServers(servers, 2, { waitTranscoding: true })
@ -343,7 +343,7 @@ describe('Test user notifications', function () {
await waitJobs(servers)
await checkVideoIsPublished({ ...baseParams, videoName: name, shortUUID, checkType: 'presence' })
const tasks: VideoEditorTask[] = [
const tasks: VideoStudioTask[] = [
{
name: 'cut',
options: {
@ -352,10 +352,10 @@ describe('Test user notifications', function () {
}
}
]
await servers[1].videoEditor.createEditionTasks({ videoId: id, tasks })
await servers[1].videoStudio.createEditionTasks({ videoId: id, tasks })
await waitJobs(servers)
await checkVideoEditionIsFinished({ ...baseParams, videoName: name, shortUUID, checkType: 'presence' })
await checkVideoStudioEditionIsFinished({ ...baseParams, videoName: name, shortUUID, checkType: 'presence' })
})
})