From 5c36fdb587f87857e5b7fb485ee858ce79cb47b1 Mon Sep 17 00:00:00 2001 From: Dustin Masters Date: Sun, 12 Nov 2017 20:03:46 -0800 Subject: [PATCH] Fix flakey tests This is caused by ConfigureMockEnvironment setting up the static property Environment. Since tests run in parallel, there is a race between which tests that set up different fake environments, causing occasional failures. Disabling parallelization fixes the issue, and tests run so fast that this should be ok. --- tests/React.Tests/Properties/AssemblyInfo.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/React.Tests/Properties/AssemblyInfo.cs b/tests/React.Tests/Properties/AssemblyInfo.cs index 0019ea1b9..d91008107 100644 --- a/tests/React.Tests/Properties/AssemblyInfo.cs +++ b/tests/React.Tests/Properties/AssemblyInfo.cs @@ -1,7 +1,9 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.InteropServices; - +using Xunit; + [assembly: AssemblyTitle("React.Tests.Core")] [assembly: AssemblyDescription("Unit tests for ReactJS.NET")] [assembly: ComVisible(false)] -[assembly: Guid("30a20b1c-18fd-4c3c-a18d-44875dba0c73")] \ No newline at end of file +[assembly: Guid("30a20b1c-18fd-4c3c-a18d-44875dba0c73")] +[assembly: CollectionBehavior(DisableTestParallelization = true)]