Skip to content

Commit 10cd4a0

Browse files
committed
get rid of superfluous [[string0]] on console when running tests
1 parent 35ac56f commit 10cd4a0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

plugins/test/specs/verboseOutput.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*global describe: true, expect: true, it: true, jasmine: true, xit: true */
12
/**
23
* @author Rob Taylor [[email protected]]
34
*/
@@ -7,10 +8,11 @@ describe("verbose output plugin", function () {
78
plugin = require('plugins/verboseOutput'),
89
docSet;
910

10-
installPlugins(['plugins/verboseOutput'], parser);
11+
//installPlugins(['plugins/verboseOutput'], parser);
1112
docSet = jasmine.getDocSetFromFile("plugins/verboseOutput.js", parser);
1213

13-
it("should log file names to console", function() {
14+
xit("should log file names to console", function() {
15+
// TODO: this doesn't actually test the plugin...
1416
var fileBegin = docSet.getByLongname("module:plugins/verboseOutput.handlers.fileBegin");
1517
expect(fileBegin[0].description).toEqual("Logging the file name to the console.");
1618
});

0 commit comments

Comments
 (0)