blob: 2a69e731e7f9f7c5c0b54ea3b7bc9202bda57f16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
'use strict';
test(() => {
// Compute Pressure should support at least "cpu"
const sources = PressureObserver.supportedSources;
assert_in_array('cpu', sources);
}, 'PressureObserver should support at least "cpu"');
test(() => {
// Compute Pressure should be frozen array
const sources = PressureObserver.supportedSources;
assert_equals(sources, PressureObserver.supportedSources);
}, 'PressureObserver must return always the same array');
test(() => {
// Compute Pressure should be frozen array
let sources = PressureObserver.supportedSources;
assert_equals(Object.isFrozen(), true);
}, 'PressureObserver must return a frozen array');
|