Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: chrome/test/data/extensions/api_test/activity_log_private/test/test.js

Issue 1064563005: blink:bindings: Temporarily disable ActivityLogApiTest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // The extension ID for the .../activity_log_private/friend extension, which 5 // The extension ID for the .../activity_log_private/friend extension, which
6 // this extension communicates with. This should correspond to the public key 6 // this extension communicates with. This should correspond to the public key
7 // defined in .../activity_log_private/friend/manifest.json. 7 // defined in .../activity_log_private/friend/manifest.json.
8 var FRIEND_EXTENSION_ID = 'pknkgggnfecklokoggaggchhaebkajji'; 8 var FRIEND_EXTENSION_ID = 'pknkgggnfecklokoggaggchhaebkajji';
9 9
10 // Setup the test cases. 10 // Setup the test cases.
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 enabledTestCase.expected_activity = 519 enabledTestCase.expected_activity =
520 enabledTestCase[activityListForOS]; 520 enabledTestCase[activityListForOS];
521 } 521 }
522 enabledTestCases.push(enabledTestCase); 522 enabledTestCases.push(enabledTestCase);
523 } 523 }
524 } 524 }
525 chrome.test.runTests(tests); 525 chrome.test.runTests(tests);
526 }); 526 });
527 } 527 }
528 528
529 setupTestCasesAndRun(); 529 // Temporarily disable this unittest in order to rename
530 // blink::EventTargetNames::LocalDOMWindow to
531 // blink::EventTargetNames::DOMWindow.
532 // see http://crrev.com/1086663003 and http://crrev.com/1088943008
533 //
534 // The plan is
535 // 1) Disable the test temporarily.
536 // 2) Rename LocalDOMWindow to DOMWindow in blink.
537 // 3) Rename LocalDOMWindow to DOMWindow in this test and enable the test.
538 //
539 // TODO(yukishiino): Enable this test.
540 //
541 // setupTestCasesAndRun();
542 chrome.test.runTests([]);
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698