13 lines
319 B
JavaScript
13 lines
319 B
JavaScript
import { describe, test, expect, beforeEach } from '@jest/globals'
|
|
|
|
describe('Server', () => {
|
|
test('server module can be imported', () => {
|
|
// Basic sanity test - just checking the module loads
|
|
expect(typeof describe).toBe('function')
|
|
})
|
|
|
|
test('1 + 1 equals 2', () => {
|
|
expect(1 + 1).toBe(2)
|
|
})
|
|
})
|