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.
2 parents 730c3dd + 4c83b1a commit 447b377Copy full SHA for 447b377
test/parse.js
@@ -16,6 +16,13 @@ function parseFixture(string) {
16
17
describe('parse()', function () {
18
19
+ describe('null', function () {
20
+ it('should parse a <null> node into a null value', function () {
21
+ var parsed = parseFixture('<null/>');
22
+ assert.strictEqual(parsed, undefined);
23
+ });
24
25
+
26
describe('boolean', function () {
27
it('should parse a <true> node into a Boolean `true` value', function () {
28
var parsed = parseFixture('<true/>');
0 commit comments