Decrease plugin version check for tests
This commit is contained in:
parent
6c5f0d3aeb
commit
b7faa8372e
1 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ describe('Test admin notifications', function () {
|
||||||
plugins: {
|
plugins: {
|
||||||
index: {
|
index: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
check_latest_versions_interval: '5 seconds'
|
check_latest_versions_interval: '3 seconds'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,7 +62,7 @@ describe('Test admin notifications', function () {
|
||||||
|
|
||||||
describe('Latest PeerTube version notification', function () {
|
describe('Latest PeerTube version notification', function () {
|
||||||
|
|
||||||
it('Should not send a notification to admins if there is not a new version', async function () {
|
it('Should not send a notification to admins if there is no new version', async function () {
|
||||||
this.timeout(30000)
|
this.timeout(30000)
|
||||||
|
|
||||||
joinPeerTubeServer.setLatestVersion('1.4.2')
|
joinPeerTubeServer.setLatestVersion('1.4.2')
|
||||||
|
@ -71,7 +71,7 @@ describe('Test admin notifications', function () {
|
||||||
await checkNewPeerTubeVersion({ ...baseParams, latestVersion: '1.4.2', checkType: 'absence' })
|
await checkNewPeerTubeVersion({ ...baseParams, latestVersion: '1.4.2', checkType: 'absence' })
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should send a notification to admins on new plugin version', async function () {
|
it('Should send a notification to admins on new version', async function () {
|
||||||
this.timeout(30000)
|
this.timeout(30000)
|
||||||
|
|
||||||
joinPeerTubeServer.setLatestVersion('15.4.2')
|
joinPeerTubeServer.setLatestVersion('15.4.2')
|
||||||
|
|
Loading…
Reference in a new issue