diff --git a/test/parse.js b/test/parse.js index 4e46e40..7aa81f3 100644 --- a/test/parse.js +++ b/test/parse.js @@ -16,6 +16,13 @@ function parseFixture(string) { describe('parse()', function () { + describe('null', function () { + it('should parse a node into a null value', function () { + var parsed = parseFixture(''); + assert.strictEqual(parsed, undefined); + }); + }); + describe('boolean', function () { it('should parse a node into a Boolean `true` value', function () { var parsed = parseFixture('');