mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-03 16:01:11 +00:00 
			
		
		
		
	Enable [globals](https://vitest.dev/config/#globals) in vitest, reducing the noise in test files.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			532 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			532 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {showInfoToast, showErrorToast, showWarningToast} from './toast.js';
 | 
						|
 | 
						|
test('showInfoToast', async () => {
 | 
						|
  showInfoToast('success 😀', {duration: -1});
 | 
						|
  expect(document.querySelector('.toastify')).toBeTruthy();
 | 
						|
});
 | 
						|
 | 
						|
test('showWarningToast', async () => {
 | 
						|
  showWarningToast('warning 😐', {duration: -1});
 | 
						|
  expect(document.querySelector('.toastify')).toBeTruthy();
 | 
						|
});
 | 
						|
 | 
						|
test('showErrorToast', async () => {
 | 
						|
  showErrorToast('error 🙁', {duration: -1});
 | 
						|
  expect(document.querySelector('.toastify')).toBeTruthy();
 | 
						|
});
 |