import { describe, it, expect } from 'bun:test'

describe('should', () => {
  it('be true', () => {
    expect(true).toBeTrue()
  })
})