import { describe, expect, it } from '@jest/globals';

describe('Sample test', () => {
  it('should test that true === true', () => {
    expect(true).toBe(true)
  })
});
