Projects STRLCPY Taipan Commits 2b03567a
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    Src/EndToEndTests/Program.fs
    skipped 170 lines
    171 171  
    172 172  [<EntryPoint>]
    173 173  let main argv =
     174 + let started = DateTime.Now
     175 + Console.WriteLine("Start: {0}", started)
    174 176   verifyChromBinaryInstallation()
    175 177   let grovieraUri = Utility.runGrovieraServer()
    176 178   let run = runTest grovieraUri
    177 179   allTests |> List.iter(run)
    178 180   Utility.shutDownServer()
     181 + let completed = DateTime.Now
     182 + Console.WriteLine("Completed: {0} [{1} seconds]", completed, (completed-started).TotalSeconds)
    179 183   0
    180 184   
Please wait...
Page is in error, reload to recover