我们有Vue.js应用程序,还有许多我们想使用Codeship并行运行的Puppeteer E2E测试。
问题是我们希望将测试拆分为并行,但我们希望避免为每个并行进程运行开发Vue.js服务器。我们希望在并行步骤之前运行它,并可以并行访问它。
如何从运行开发服务器的步骤共享网络以访问http:// localhost:8080?
这是我们想要进行的测试的一个例子
<h3>Products to be authorized:</h3>
<table
mat-table [dataSource]="products" class="mat-elevation-z8">
<ng-container matColumnDef="title">
<th mat-header-cell *matHeaderCellDef> Title </th>
<td mat-cell *matCellDef="let element"> {{element.title}} </td>
</ng-container>
<ng-container matColumnDef="location">
<th mat-header-cell *matHeaderCellDef> Location </th>
<td mat-cell *matCellDef="let element"> {{element.location}} </td>
</ng-container>
<ng-container matColumnDef="delivarable">
<th mat-header-cell *matHeaderCellDef> Delivarable </th>
<td mat-cell *matCellDef="let element"> {{element.delivarable}} </td>
</ng-container>
<ng-container matColumnDef="description">
<th mat-header-cell *matHeaderCellDef> Description </th>
<td mat-cell *matCellDef="let element"> {{element.description}} </td>
</ng-container>
<ng-container matColumnDef="price">
<th mat-header-cell *matHeaderCellDef> Price </th>
<td mat-cell *matCellDef="let element"> {{element.price}} </td>
</ng-container>
<ng-container matColumnDef="acceptorreject">
<th mat-header-cell *matHeaderCellDef> Authorize </th>
<td mat-cell *matCellDef="let element">
<button mat-raised-button color="primary" (click)="authorizeProduct(element)">Accept</button>
<button mat-raised-button color="warn" (click)="rejectProduct(element.productId)">Reject</button>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>