Angular - Testing
Consider this test code:
If
TestBed.configureTestingModule({ providers: [LoggingService] });
const service = TestBed.inject(LoggingService);
console.log(service.logMessage());If
logMessage() returns 'Logged', what will be printed?