mirror of
				https://github.com/sissbruecker/linkding.git
				synced 2025-11-04 13:04:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			315 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			315 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Make sure Chromium is installed
 | 
						|
playwright install chromium
 | 
						|
 | 
						|
# Test server loads assets from static folder, so make sure files there are up-to-date
 | 
						|
rm -rf static
 | 
						|
npm run build
 | 
						|
python manage.py collectstatic
 | 
						|
 | 
						|
# Run E2E tests
 | 
						|
python manage.py test bookmarks.tests_e2e --pattern="e2e_test_*.py"
 |