UNPKG

grunt-pugpig-editions-xml

Version:
22 lines (15 loc) 340 B
'use strict'; var grunt = require('grunt'), fs = require('fs'); exports.pugpig_issues_xml = { fileCreated: function (test) { test.expect(1); var path = 'test/result/editions.xml', file; if (fs.existsSync(path)) { file = true; } test.ok(file, 'File should exist after task is ran.'); test.done(); } };