@sutton-signwriting/core
Version:
a javascript package for node and browsers that supports general processing of the Sutton SignWriting script
18 lines (15 loc) • 392 B
JavaScript
import { parse, compose } from './';
it('should pass', () => {
expect(true).toBe(true);
});
it('should parse to object and back to original string', () => {
let styles = [
'-',
'-C',
'-CG_color_D_red,eee_Zx--ox!my!',
'-CP10G_ccc_D_red,Cyan_Zx--primary blinking!cursor!'
];
styles.map((test) => {
expect(compose(parse(test))).toBe(test);
})
})