Enforce E2E test prerequisites when building individual solutions only (dotnet/aspnetcore#11642)

* Fixes multiple issues that happened due to the E2E tests not running on the CI
* Enforces prerequisites for E2E tests on the CI and when building projects with E2E tests.
* Re-enables the E2E tests for templates.

Commit migrated from dotnet/aspnetcore@1480b99866
This commit is contained in:
Javier Calvarro Nelson 2019-06-29 01:04:36 +02:00 коммит произвёл GitHub
Родитель 64b6e257d9
Коммит 9412d22e77
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -28,8 +28,8 @@ export class FetchData extends Component {
</thead>
<tbody>
{forecasts.map(forecast =>
<tr key={forecast.dateFormatted}>
<td>{forecast.dateFormatted}</td>
<tr key={forecast.date}>
<td>{forecast.date}</td>
<td>{forecast.temperatureC}</td>
<td>{forecast.temperatureF}</td>
<td>{forecast.summary}</td>

Просмотреть файл

@ -52,8 +52,8 @@ class FetchData extends React.PureComponent<WeatherForecastProps> {
</thead>
<tbody>
{this.props.forecasts.map((forecast: WeatherForecastsStore.WeatherForecast) =>
<tr key={forecast.dateFormatted}>
<td>{forecast.dateFormatted}</td>
<tr key={forecast.date}>
<td>{forecast.date}</td>
<td>{forecast.temperatureC}</td>
<td>{forecast.temperatureF}</td>
<td>{forecast.summary}</td>

Просмотреть файл

@ -11,7 +11,7 @@ export interface WeatherForecastsState {
}
export interface WeatherForecast {
dateFormatted: string;
date: string;
temperatureC: number;
temperatureF: number;
summary: string;