This repository has been archived on 2025-09-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2025SELab2-project-Dwengo/backend/tests/example.test.ts

9 lines
225 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).equals(expected);
});
});