Detects when user changes same config setting 3+ times within 24 hours. Shows non-intrusive prompt offering help with guided calibration flow. Guided calibration features: - Test for false positives (walk around room) - Test for missed motion (sit still) - Suggest optimal value based on diurnal baseline SNR and link health - Apply suggested value button Files: - dashboard/js/proactive.js: Complete implementation with localStorage tracking Acceptance: - Help prompt fires after 3+ changes in 24h - Calibration flow tests both directions - Suggests value based on system data - Apply button works
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
var test = require('tape');
|
|
|
|
var $Object = require('../');
|
|
var isObject = require('../isObject');
|
|
var ToObject = require('../ToObject');
|
|
var RequireObjectCoercible = require('..//RequireObjectCoercible');
|
|
|
|
test('errors', function (t) {
|
|
t.equal($Object, Object);
|
|
// @ts-expect-error
|
|
t['throws'](function () { ToObject(null); }, TypeError);
|
|
// @ts-expect-error
|
|
t['throws'](function () { ToObject(undefined); }, TypeError);
|
|
// @ts-expect-error
|
|
t['throws'](function () { RequireObjectCoercible(null); }, TypeError);
|
|
// @ts-expect-error
|
|
t['throws'](function () { RequireObjectCoercible(undefined); }, TypeError);
|
|
|
|
t.deepEqual(RequireObjectCoercible(true), true);
|
|
t.deepEqual(ToObject(true), Object(true));
|
|
t.deepEqual(ToObject(42), Object(42));
|
|
var f = function () {};
|
|
t.equal(ToObject(f), f);
|
|
|
|
t.equal(isObject(undefined), false);
|
|
t.equal(isObject(null), false);
|
|
t.equal(isObject({}), true);
|
|
t.equal(isObject([]), true);
|
|
t.equal(isObject(function () {}), true);
|
|
|
|
var obj = {};
|
|
t.equal(RequireObjectCoercible(obj), obj);
|
|
t.equal(ToObject(obj), obj);
|
|
|
|
t.end();
|
|
});
|