simple_contract.test.ts 157 B

1234567
  1. import { describe, it, expect } from '@jest/globals'
  2. describe('Simple Contract Test', () => {
  3. it('should work', () => {
  4. expect(1 + 1).toBe(2)
  5. })
  6. })