Skip to content

Commit

Permalink
Reorder the runtime environment metadata items: Device, Network, CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Feb 8, 2017
1 parent 5403bc3 commit fc858ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lighthouse-core/runner.js
Expand Up @@ -286,19 +286,19 @@ class Runner {
const emulationDesc = emulation.getEmulationDesc();
const environment = [
{
name: 'CPU Throttling',
enabled: !flags.disableCpuThrottling,
description: emulationDesc['cpuThrottling']
name: 'Device Emulation',
enabled: !flags.disableDeviceEmulation,
description: emulationDesc['deviceEmulation']
},
{
name: 'Network Throttling',
enabled: !flags.disableNetworkThrottling,
description: emulationDesc['networkThrottling']
},
{
name: 'Device Emulation',
enabled: !flags.disableDeviceEmulation,
description: emulationDesc['deviceEmulation']
name: 'CPU Throttling',
enabled: !flags.disableCpuThrottling,
description: emulationDesc['cpuThrottling']
}
];

Expand Down

0 comments on commit fc858ea

Please sign in to comment.