2 Commits

Author SHA1 Message Date
933a5e0a45 1.0.4 2020-10-24 21:03:51 +00:00
bb339b8c85 fix(core): update 2020-10-24 21:03:51 +00:00
4 changed files with 17 additions and 5 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartxml", "name": "@pushrocks/smartxml",
"version": "1.0.3", "version": "1.0.4",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartxml", "name": "@pushrocks/smartxml",
"version": "1.0.3", "version": "1.0.4",
"private": false, "private": false,
"description": "a package for creating and parsing xml formated files", "description": "a package for creating and parsing xml formated files",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -9,7 +9,7 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "(tstest test/ --web)", "test": "(tstest test/ --web)",
"build": "(tsbuild --web)" "build": "(tsbuild --web && tsbundle npm)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.25", "@gitzone/tsbuild": "^2.1.25",

View File

@@ -2,8 +2,13 @@ import { expect, tap } from '@pushrocks/tapbundle';
import * as smartxml from '../ts/index'; import * as smartxml from '../ts/index';
let testSmartxml: smartxml.SmartXml; 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(); testSmartxml = new smartxml.SmartXml();
}); });
@@ -16,5 +21,12 @@ tap.test('should create an xml string', async () => {
console.log(xmlResult); 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(); tap.start();

View File

@@ -4,7 +4,7 @@ export class SmartXml {
constructor() {} constructor() {}
public parseXmlToObject<T = any>(xmlStringArg: string): T { public parseXmlToObject<T = any>(xmlStringArg: string): T {
const jsonObject = plugins.fastXmlParser.convertToJson(xmlStringArg); const jsonObject = plugins.fastXmlParser.parse(xmlStringArg);
return jsonObject; return jsonObject;
} }