Intro This time, I tested a component of Angular. [Angular]Test with Azure DevOps Sample Test target was here. first-page.component.html <p>first-page works!</p> <div id="product-list" *ngFor="let p of products"> <div class="product-id">ID: {{p.id}}</div> <div class="product-name">NAME: {{p.name}}</div> </div> <button id="load-button" (click)="loadProducts()"></button> <input id="input-file" type="file" (change)="fileChanged($event.target)" > <button id="save-button" (click)="saveFile()">Save</button> first-page.component.ts import { Component, OnInit } from '@angular/core'; import { FirstPageService } from './first-page.service'; import { Product } from '../products/product'; import { FileUploadService } from '../file-upload/file-upload.service'; @C...