Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/loglevel/test/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /* global MyCustomLogger, log */
"use strict";
describe("loglevel from a global <script> tag with a custom context", function () {
it("is available globally", function () {
expect(MyCustomLogger).not.toBeUndefined();
});
it("doesn't have log defined globally", function () {
expect(window.log).not.toBeDefined();
});
it("allows setting the logging level", function () {
MyCustomLogger.setLevel(MyCustomLogger.levels.TRACE);
MyCustomLogger.setLevel(MyCustomLogger.levels.DEBUG);
MyCustomLogger.setLevel(MyCustomLogger.levels.INFO);
MyCustomLogger.setLevel(MyCustomLogger.levels.WARN);
MyCustomLogger.setLevel(MyCustomLogger.levels.ERROR);
});
it("successfully logs", function () {
window.console = { "log": jasmine.createSpy("log") };
MyCustomLogger.setLevel(MyCustomLogger.levels.INFO);
MyCustomLogger.info("test message");
expect(console.log).toHaveBeenCalledWith("test message");
});
});
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.005 ]-- |