mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			215 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			215 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { beforeAll } from "bun:test";
 | 
						|
import { migrate } from "~/db";
 | 
						|
 | 
						|
process.env.JWT_SECRET = "this is a secret";
 | 
						|
process.env.JWT_ISSUER = "https://kyoo.zoriya.dev";
 | 
						|
 | 
						|
beforeAll(async () => {
 | 
						|
	await migrate();
 | 
						|
});
 |