Windshaft-cartodb/test/unit/ported/profiler-test.js
2019-10-07 11:29:07 +02:00

20 lines
619 B
JavaScript

'use strict';
require('../../support/test-helper');
var assert = require('assert');
var ProfilerProxy = require('../../../lib/stats/profiler-proxy');
describe('profiler', function() {
it('Profiler is null in ProfilerProxy when profiling is not enabled', function() {
var profilerProxy = new ProfilerProxy({profile: false});
assert.equal(profilerProxy.profiler, null);
});
it('Profiler is NOT null in ProfilerProxy when profiling is enabled', function() {
var profilerProxy = new ProfilerProxy({profile: true});
assert.notEqual(profilerProxy.profiler, null);
});
});