]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix typo
authorChocobozzz <me@florianbigard.com>
Fri, 19 Nov 2021 07:25:07 +0000 (08:25 +0100)
committerChocobozzz <me@florianbigard.com>
Fri, 19 Nov 2021 07:26:22 +0000 (08:26 +0100)
server/tests/api/check-params/video-files.ts
server/tests/api/notifications/user-notifications.ts
shared/extra-utils/users/notifications-command.ts
shared/extra-utils/users/notifications.ts

index 61936d5625a616278494c07c2574f06903e87c1f..3ccdf5f49d629db778ce97bedc099ce58c0127f0 100644 (file)
@@ -20,7 +20,7 @@ describe('Test videos files', function () {
   // ---------------------------------------------------------------
 
   before(async function () {
-    this.timeout(150_000)
+    this.timeout(300_000)
 
     servers = await createMultipleServers(2)
     await setAccessTokensToServers(servers)
index e53ab2aa527a02117d5117442e23178c5423c2ed..468efdf35b33aa4385d01bd8f024d7c4188ddb74 100644 (file)
@@ -61,7 +61,7 @@ describe('Test user notifications', function () {
 
       await uploadRandomVideoOnServers(servers, 1)
 
-      const notification = await servers[0].notifications.getLastest({ token: userAccessToken })
+      const notification = await servers[0].notifications.getLatest({ token: userAccessToken })
       expect(notification).to.be.undefined
 
       expect(emails).to.have.lengthOf(0)
@@ -237,12 +237,12 @@ describe('Test user notifications', function () {
     })
 
     it('Should not send a notification if the wait transcoding is false', async function () {
-      this.timeout(50000)
+      this.timeout(100_000)
 
       await uploadRandomVideoOnServers(servers, 2, { waitTranscoding: false })
       await waitJobs(servers)
 
-      const notification = await servers[0].notifications.getLastest({ token: userAccessToken })
+      const notification = await servers[0].notifications.getLatest({ token: userAccessToken })
       if (notification) {
         expect(notification.type).to.not.equal(UserNotificationType.MY_VIDEO_PUBLISHED)
       }
index 2d79a374757a7317e16d49b07a3ddbb9aa20a4fb..692420b8b5cd380568e84b0283df97a023514537 100644 (file)
@@ -71,7 +71,7 @@ export class NotificationsCommand extends AbstractCommand {
     })
   }
 
-  async getLastest (options: OverrideCommandOptions = {}) {
+  async getLatest (options: OverrideCommandOptions = {}) {
     const { total, data } = await this.list({
       ...options,
       start: 0,
index 7db4bfd3fc7109db9611c314b780d2aeb0c5dfa5..07ccb0f8dc826a8719bbd8b67140fbca22a2e000 100644 (file)
@@ -727,7 +727,7 @@ async function checkNotification (options: CheckerBaseParams & {
   const check = options.check || { web: true, mail: true }
 
   if (check.web) {
-    const notification = await server.notifications.getLastest({ token: token })
+    const notification = await server.notifications.getLatest({ token: token })
 
     if (notification || checkType !== 'absence') {
       notificationChecker(notification, checkType)