Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / extensions / test / data / system / memory / test_memory_api.js
blob6e15377f55085aa57cfb427bf4781be30959771b
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.
5 // system.memory api test
6 // extensions_browsertests --gtest_filter=SystemMemoryApiTest.*
8 chrome.test.runTests([
9   function testGet() {
10     for(var i = 0; i < 10; ++i) {
11       chrome.system.memory.getInfo(chrome.test.callbackPass(function(result) {
12         chrome.test.assertEq(4096, result.capacity);
13         chrome.test.assertEq(1024, result.availableCapacity);
14       }));
15     }
16   }
17 ]);