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
3 // found in the LICENSE file.
6 // browser_tests.exe --gtest_filter="TtsApiTest.*"
9 function testPauseBeforeSpeak() {
15 'onEvent': function(event) {
16 if (event.type == 'end')
17 chrome.test.succeed();
22 function testPauseDuringSpeak() {
26 'onEvent': function(event) {
27 if (event.type == 'end')
28 chrome.test.succeed();