Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: remove commented test for HTML formatter #9532

Merged
merged 1 commit into from Oct 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 0 additions & 22 deletions tests/lib/formatters/html.js
Expand Up @@ -329,28 +329,6 @@ describe("formatter:html", () => {
});
});

// // Formatter doesn't use source property
// /*
// describe("when passing a single message with no source", function() {

// var code = [{
// filePath: "foo.js",
// messages: [{
// message: "Unexpected foo.",
// severity: 2,
// line: 5,
// column: 10,
// ruleId: "foo"
// }]
// }];

// it("should return a string in HTML format with 1 issue in 1 file", function() {
// var result = formatter(code);
// assert.strictEqual(parseHTML(result), "");
// });
// });
// */

describe("when passing a single message with no rule id or message", () => {
const code = [{
filePath: "foo.js",
Expand Down