We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1528cc commit 70dfe8aCopy full SHA for 70dfe8a
test/48.js
@@ -0,0 +1,14 @@
1
+const { parse } = require('../dist');
2
+
3
+describe.only('issue 48', function () {
4
+ it('get decoded text', function () {
5
+ const root = parse('<div>The king's hat is on fire!</div>');
6
+ const div = root.querySelector('div');
7
+ div.text.should.eql('The king\'s hat is on fire!');
8
+ });
9
+ it('get decoded text2', function () {
10
+ const root = parse('<div>The king's hat is on fire!</div>');
11
12
13
14
+});
0 commit comments