9 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { describe, it, expect } from "vitest";
 | |
| 
 | |
| describe("Sample test", () => {
 | |
|     it("should sum to 2", () => {
 | |
|         const expected = 2;
 | |
|         const result = 1 + 1;
 | |
|         expect(result).toBe(expected);
 | |
|     });
 | |
| })
 |