mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			953 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			953 B
		
	
	
	
		
			TypeScript
		
	
	
| /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
 | |
| 
 | |
| import 'mocha'
 | |
| import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../../shared/extra-utils'
 | |
| import { getVideosOverview } from '@shared/extra-utils/overviews/overviews'
 | |
| 
 | |
| describe('Test videos overview', function () {
 | |
|   let server: ServerInfo
 | |
| 
 | |
|   // ---------------------------------------------------------------
 | |
| 
 | |
|   before(async function () {
 | |
|     this.timeout(30000)
 | |
| 
 | |
|     server = await flushAndRunServer(1)
 | |
|   })
 | |
| 
 | |
|   describe('When getting videos overview', function () {
 | |
| 
 | |
|     it('Should fail with a bad pagination', async function () {
 | |
|       await getVideosOverview(server.url, 0, 400)
 | |
|       await getVideosOverview(server.url, 100, 400)
 | |
|     })
 | |
| 
 | |
|     it('Should succeed with a good pagination', async function () {
 | |
|       await getVideosOverview(server.url, 1)
 | |
|     })
 | |
|   })
 | |
| 
 | |
|   after(async function () {
 | |
|     await cleanupTests([ server ])
 | |
|   })
 | |
| })
 |