smartstring/test/test.type.ts

8 lines
216 B
TypeScript
Raw Normal View History

2019-10-10 15:28:23 +00:00
import { tap, expect } from '@pushrocks/tapbundle';
import * as smartstring from '../ts';
tap.test('should state valuid utf8', async () => {
expect(smartstring.type.isUtf8('hithere')).to.be.true;
});
tap.start();