Application started

This commit is contained in:
Pranav K 2020-01-09 18:51:21 -08:00
parent 17b1dc9841
commit dd524df6bb
No known key found for this signature in database
GPG Key ID: 1963DA6D96C3057A
2 changed files with 16 additions and 12 deletions

View File

@ -37,6 +37,9 @@ namespace Wasm.Performance.Driver
}
}
// This write is required for the benchmarking infrastructure.
Console.WriteLine("Application started.");
using var browser = await Selenium.CreateBrowser(seleniumPort);
using var testApp = StartTestApp();

View File

@ -1,15 +1,16 @@
{
"dependencies": [
"blazorwasmbenchmark"
],
"services": {
"blazorwasmbenchmark": {
"source": {
"repository": "https://github.com/aspnet/AspNetCore.git",
"branchOrCommit": "prkrishn/blazor-benchmarking",
"dockerfile": "src/Components/benchmarkapps/Wasm.Performance/dockerfile"
},
"waitForExit": true
}
"dependencies": [
"blazorwasmbenchmark"
],
"services": {
"blazorwasmbenchmark": {
"source": {
"repository": "https://github.com/dotnet/AspNetCore.git",
"branchOrCommit": "prkrishn/blazor-benchmarking",
"dockerfile": "src/Components/benchmarkapps/Wasm.Performance/dockerfile"
},
"waitForExit": true,
"readyStateText": "Application started."
}
}
}