mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* Add testcontainers to e2e * Run e2e tests in github without docker * Run lint on e2e * Cleaner setup ordering * Rename setup file
		
			
				
	
	
		
			25 lines
		
	
	
		
			813 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			813 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { GenericContainer, PostgreSqlContainer } from 'testcontainers';
 | 
						|
 | 
						|
export default async () => {
 | 
						|
  process.env.NODE_ENV = 'development';
 | 
						|
  process.env.TYPESENSE_API_KEY = 'abc123';
 | 
						|
 | 
						|
  const pg = await new PostgreSqlContainer('postgres')
 | 
						|
    .withExposedPorts(5432)
 | 
						|
    .withDatabase('immich')
 | 
						|
    .withUsername('postgres')
 | 
						|
    .withPassword('postgres')
 | 
						|
    .start();
 | 
						|
 | 
						|
  process.env.DB_PORT = String(pg.getMappedPort(5432));
 | 
						|
  process.env.DB_HOSTNAME = pg.getHost();
 | 
						|
  process.env.DB_USERNAME = pg.getUsername();
 | 
						|
  process.env.DB_PASSWORD = pg.getPassword();
 | 
						|
  process.env.DB_DATABASE_NAME = pg.getDatabase();
 | 
						|
 | 
						|
  const redis = await new GenericContainer('redis').withExposedPorts(6379).start();
 | 
						|
 | 
						|
  process.env.REDIS_PORT = String(redis.getMappedPort(6379));
 | 
						|
  process.env.REDIS_HOSTNAME = redis.getHost();
 | 
						|
};
 |