mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	 d74fba8175
			
		
	
	d74fba8175
	
	
	
		
			
			Backport #27102 by @silverwind Enable [globals](https://vitest.dev/config/#globals) in vitest, reducing the noise in test files. Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			11 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import {GET, POST, PATCH, PUT, DELETE} from './fetch.js';
 | |
| 
 | |
| // tests here are only to satisfy the linter for unused functions
 | |
| test('exports', () => {
 | |
|   expect(GET).toBeTruthy();
 | |
|   expect(POST).toBeTruthy();
 | |
|   expect(PATCH).toBeTruthy();
 | |
|   expect(PUT).toBeTruthy();
 | |
|   expect(DELETE).toBeTruthy();
 | |
| });
 |