smartstring/test/test.type.ts
2019-10-10 17:28:23 +02:00

8 lines
216 B
TypeScript

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();