Disable AutomationApiTest.Mixin on Windows due to flakiness
[chromium-blink-merge.git] / chrome / test / remoting / webapp_javascript_unittest.cc
blob9365a4907a084bddae6bec925c38db9ba1f74c7c
1 // Copyright 2014 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.
5 #include "base/path_service.h"
6 #include "chrome/test/remoting/qunit_browser_test_runner.h"
8 #if defined(OS_MACOSX)
9 #include "base/mac/foundation_util.h"
10 #endif // !defined(OS_MACOSX)
12 namespace remoting {
14 IN_PROC_BROWSER_TEST_F(QUnitBrowserTestRunner, Remoting_Webapp_Js_Unittest) {
15 base::FilePath base_dir;
16 ASSERT_TRUE(PathService::Get(base::DIR_EXE, &base_dir));
18 #if defined(OS_MACOSX)
19 if (base::mac::AmIBundled()) {
20 // If we are inside a mac bundle, navigate up to the output directory
21 base_dir = base::mac::GetAppBundlePath(base_dir).DirName();
23 #endif // !defined(OS_MACOSX)
24 RunTest(
25 base_dir.Append(FILE_PATH_LITERAL("remoting/unittests/unittests.html")));
28 } // namespace remoting