mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* Fix formattedText implementation for iOS Fix typeof undefined checks Add slow tests message Improve tests speed * fix tslint reduce transitions duration in test * waitUntilReady will throw if timeout fix tests that needs to wait without throwing improve test speed
Sample code:
console.time('test');
console.log("this is a log test");
console.info("infoooo");
console.error("errorrrr");
console.log("test formatting: %.2f", 1.43234);
console.log("test", "more", "params");
console.assert((2 == 1), 'assertion failed:', 'error');
console.warn('calling trace');
console.trace();
console.dump(console);
console.timeEnd('test');