(function (root, factory) { 'use strict'; if (typeof module === 'object' && module.exports) { // Node. Does not work with strict CommonJS, but only CommonJS-like // environments that support module.exports, like Node. factory(require('./x2js'), require('qunit-cli')); } else { // Browser globals (root is window) factory(root.X2JS, root.QUnit); } })(this, function (X2JS, QUnit) { 'use strict'; QUnit.module('Smoke tests'); QUnit.test('X->JS single element', function (assert) { var xml = 'text'; var x = new X2JS(); var js = x.xml2js(xml); assert.ok(js.document); assert.ok(js.document.element); assert.strictEqual(js.document.element, 'text'); }); QUnit.test('X->JS two elements', function (assert) { var xml = 'texttext2'; var x = new X2JS(); var js = x.xml2js(xml); assert.ok(js.document); assert.ok(js.document.element1); assert.strictEqual(js.document.element1, 'text'); assert.ok(js.document.element2); assert.strictEqual(js.document.element2, 'text2'); }); });