From c079bf7e7c0b5085e2aebfde5660f32ce702951f Mon Sep 17 00:00:00 2001 From: philippe Date: Wed, 5 Apr 2023 13:17:53 -0400 Subject: [PATCH 1/2] Update LICENSE year. --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index d4edb13662..b27be1aaf5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2022 Plotly, Inc +Copyright (c) 2023 Plotly, Inc Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From a5ca9048d268d913fd7c203a83171e882d98577d Mon Sep 17 00:00:00 2001 From: philippe Date: Fri, 7 Apr 2023 11:29:20 -0400 Subject: [PATCH 2/2] Set mocha timeout to 5s --- dash/dash-renderer/karma.conf.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dash/dash-renderer/karma.conf.js b/dash/dash-renderer/karma.conf.js index 011443661c..e242e23ea5 100644 --- a/dash/dash-renderer/karma.conf.js +++ b/dash/dash-renderer/karma.conf.js @@ -17,6 +17,11 @@ module.exports = config => { ], reporters: ["progress"], browsers: ["Chrome"], - webpack: require('./webpack.test.config.js')[0] + webpack: require('./webpack.test.config.js')[0], + client: { + mocha: { + timeout: 5000 + } + } }); -} \ No newline at end of file +}