fix(core): update
This commit is contained in:
14
test/test.ts
14
test/test.ts
@ -2,8 +2,13 @@ import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as smartxml from '../ts/index';
|
||||
|
||||
let testSmartxml: smartxml.SmartXml;
|
||||
let testXml = `
|
||||
<hello>
|
||||
<wow>nice</wow>
|
||||
</hello>
|
||||
`;
|
||||
|
||||
tap.test('should create ', async () => {
|
||||
tap.test('should create an instance', async () => {
|
||||
testSmartxml = new smartxml.SmartXml();
|
||||
});
|
||||
|
||||
@ -16,5 +21,12 @@ tap.test('should create an xml string', async () => {
|
||||
console.log(xmlResult);
|
||||
});
|
||||
|
||||
tap.test('should parse an yml file', async () => {
|
||||
const jsObject = testSmartxml.parseXmlToObject(testXml);
|
||||
console.log(jsObject);
|
||||
expect(typeof jsObject).to.equal('object');
|
||||
expect(jsObject).property('hello').property('wow').to.equal('nice');
|
||||
});
|
||||
|
||||
|
||||
tap.start();
|
||||
|
Reference in New Issue
Block a user