blob: 777e2357b2ed4597bf5fb0263d5c4aeeaf9ee5b4 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// System API test
// Run with browser_tests \
// --gtest_filter=ExtensionApiTest.GetIncognitoModeAvailability
chrome.test.runTests([
function getIncognitoModeAvailabilityTest() {
chrome.systemPrivate.getIncognitoModeAvailability(
chrome.test.callbackPass(function(value) {
chrome.test.assertEq('disabled', value);
}));
},
]);