We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59dcc75 commit ca58fc2Copy full SHA for ca58fc2
packages/logger/test/end-to-end/compatibility-test-cases.js
@@ -705,6 +705,28 @@ module.exports = [
705
}
706
},
707
708
+ // Test cases based on observed differences and bug reports
709
+ {
710
+ id: 'issue-1069',
711
+ description: 'timestamp property is not silently removed',
712
+ call: {
713
+ method: 'info',
714
+ args: ['Timestamp test', { timestamp: 123456 }]
715
+ },
716
+ expectedOutput: {
717
+ nextLogger: {
718
+ level: 'info',
719
+ message: 'Timestamp test',
720
+ timestamp: 123456
721
722
+ reliabilityKit: {
723
724
725
726
+ }
727
728
729
+
730
// Test cases based on real-world usage of n-logger
731
{
732
id: 'next-article-1',
0 commit comments