Commit 1f3c21e7 authored by rkc's avatar rkc Committed by Commit bot

Fix and re-enable the Feedback API Test.

This test should now be working after the fixes to the screenshotting code
that initialy had made it fail.

Also adding an OWNERS file for the Feedback API directory.

R=kalman@chromium.org
BUG=369886

Review URL: https://codereview.chromium.org/516083002

Cr-Commit-Position: refs/heads/master@{#292547}
parent e471fab8
...@@ -14,8 +14,7 @@ class FeedbackApiTest: public ExtensionApiTest { ...@@ -14,8 +14,7 @@ class FeedbackApiTest: public ExtensionApiTest {
virtual ~FeedbackApiTest() {} virtual ~FeedbackApiTest() {}
}; };
// Falis on buildbots. crbug.com/297414 IN_PROC_BROWSER_TEST_F(FeedbackApiTest, Basic) {
IN_PROC_BROWSER_TEST_F(FeedbackApiTest, DISABLED_Basic) {
EXPECT_TRUE(RunExtensionTest("feedback_private/basic")) << message_; EXPECT_TRUE(RunExtensionTest("feedback_private/basic")) << message_;
} }
......
...@@ -21,8 +21,10 @@ chrome.test.runTests([ ...@@ -21,8 +21,10 @@ chrome.test.runTests([
})); }));
}, },
function sendFeedbackTest() { function sendFeedbackTest() {
var feedbackInfo = {}; var feedbackInfo = {
feedbackInfo.description = 'This is a test description'; description: 'This is a test description',
sendHistograms: false
};
chrome.feedbackPrivate.sendFeedback( chrome.feedbackPrivate.sendFeedback(
feedbackInfo, chrome.test.callbackPass(function(response) { feedbackInfo, chrome.test.callbackPass(function(response) {
chrome.test.assertEq(response, 'success'); chrome.test.assertEq(response, 'success');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment