diff --git a/Tests/Editor/UnityLocalisationTests.cs b/Tests/Editor/UnityLocalisationTests.cs index a4eaf0c9..c2246fa1 100644 --- a/Tests/Editor/UnityLocalisationTests.cs +++ b/Tests/Editor/UnityLocalisationTests.cs @@ -119,6 +119,10 @@ private static void CreateAndConfigureProject(string[] lines, string yarnName, s // flagging it as needing save and reimport EditorUtility.SetDirty(importer); importer.SaveAndReimport(); + + // now open and read out the contents of the json + var json = File.ReadAllText($"{AssetPath}/{projectName}.yarnproject"); + Debug.LogWarning(json); } public void Cleanup()