Complete the code to import the necessary Angular testing module.
TestBed.configureTestingModule({ imports: [[1]] });The HttpClientTestingModule is used to mock HTTP requests in Angular tests.
Complete the code to declare the component under test.
TestBed.configureTestingModule({ declarations: [[1]] });The component to test must be declared in the declarations array.
Fix the error in the TestBed setup to create a component fixture.
const fixture = TestBed.[1](AppComponent);createComponent creates a test fixture for the component.
Fill both blanks to properly configure TestBed with declarations and imports.
TestBed.configureTestingModule({ declarations: [[1]], imports: [[2]] });The component goes in declarations, and the HTTP testing module goes in imports.
Fill all three blanks to create a TestBed configuration with declarations, imports, and providers.
TestBed.configureTestingModule({ declarations: [[1]], imports: [[2]], providers: [[3]] });Declare the component, import the HTTP testing module, and provide the service for dependency injection.
