All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.test.error.js Maven / Gradle / Ivy

The newest version!
'use strict';

var test = require('tape');
var traverse = require('../');

test('traverse an Error', function (t) {
	var obj = new Error('test');
	var results = traverse(obj).map(function () {});
	t.same(results, { message: 'test' });

	t.end();
});





© 2015 - 2024 Weber Informatics LLC | Privacy Policy