| Index: chrome/test/data/webui/md_history/history_synced_tabs_test.js
|
| diff --git a/chrome/test/data/webui/md_history/history_synced_tabs_test.js b/chrome/test/data/webui/md_history/history_synced_tabs_test.js
|
| index 60e80096678417461c72ba1066046b7cfe23230f..7e99a96b79273844b9eaeafa8858ef28640da005 100644
|
| --- a/chrome/test/data/webui/md_history/history_synced_tabs_test.js
|
| +++ b/chrome/test/data/webui/md_history/history_synced_tabs_test.js
|
| @@ -253,9 +253,21 @@ cr.define('md_history.history_synced_tabs_test', function() {
|
| });
|
| });
|
|
|
| + test('hide sign in promo in guest mode', function() {
|
| + // Initial state is signed in.
|
| + element.signInState_ = true;
|
| + // Turn to guest mode, which is also signed out state.
|
| + element.guestSession_ = true;
|
| + updateSignInState(false);
|
| + return flush().then(function() {
|
| + assertTrue(element.$['sign-in-guide'].hidden);
|
| + });
|
| + });
|
| +
|
| teardown(function() {
|
| element.syncedDevices = [];
|
| element.searchTerm = '';
|
| + element.guestSession_ = false;
|
| });
|
| });
|
| }
|
|
|