UNPKG

grunt-behat

Version:
35 lines (31 loc) 911 B
var grunt = require('grunt'); /* ======== A Handy Little Nodeunit Reference ======== https://github.com/caolan/nodeunit Test methods: test.expect(numAssertions) test.done() Test assertions: test.ok(value, [message]) test.equal(actual, expected, [message]) test.notEqual(actual, expected, [message]) test.deepEqual(actual, expected, [message]) test.notDeepEqual(actual, expected, [message]) test.strictEqual(actual, expected, [message]) test.notStrictEqual(actual, expected, [message]) test.throws(block, [error], [message]) test.doesNotThrow(block, [error], [message]) test.ifError(value) */ exports['behat'] = { setUp: function(done) { // setup here done(); }, 'helper': function(test) { test.expect(1); // tests here test.equal(grunt.helper('behat'), 'behat!!!', 'should return the correct value.'); test.done(); } };