// https://github.com/isaacs/sax-js/issues/49 require(__dirname).test({ xml: 'body', expect: [ [ 'processinginstruction', { name: 'has', body: 'unbalanced "quotes' } ], [ 'opentagstart', { name: 'xml', attributes: {} } ], [ 'opentag', { name: 'xml', attributes: {}, isSelfClosing: false } ], [ 'text', 'body' ], [ 'closetag', 'xml' ] ], strict: false, opt: { lowercasetags: true, noscript: true } })