Windshaft-cartodb/test/unit/ported/profiler-test.js
2019-10-21 19:41:03 +02:00

19 lines
631 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.strictEqual(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);
});
});