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 log */
"use strict";
describe("loglevel from a global <script> tag", function () {
it("is available globally", function () {
expect(log).not.toBeUndefined();
});
it("allows setting the logging level", function () {
log.setLevel(log.levels.TRACE);
log.setLevel(log.levels.DEBUG);
log.setLevel(log.levels.INFO);
log.setLevel(log.levels.WARN);
log.setLevel(log.levels.ERROR);
});
it("successfully logs", function () {
window.console = { "log": jasmine.createSpy("log") };
log.setLevel(log.levels.INFO);
log.info("test message");
expect(console.log).toHaveBeenCalledWith("test message");
});
}); |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.038 ]-- |