1import { describe, beforeAll, beforeEach, afterEach, afterAll, it, expect } from 'hypium/index' 2 3export default function abilityTest() { 4 describe('ActsAbilityTest', function () { 5 it('assertContain',0, function () { 6 console.info("it begin") 7 let a = 'abc' 8 let b = 'b' 9 expect(a).assertContain(b) 10 expect(a).assertEqual(a) 11 }) 12 }) 13}