Windshaft-cartodb/test/unit/ported/profiler-test.js
2019-10-21 20:05:51 +02:00

19 lines
637 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.notStrictEqual(profilerProxy.profiler, null);
});
});