[SignalR] Test definition isn't async (#9481)

Jest is warning us that this will be deprecated in the future. There's no reason for the `describe` callback to be `async` since all it's doing is registering tests through nested `it` calls.
This commit is contained in:
Andrew Stanton-Nurse 2019-04-18 08:44:35 -07:00 committed by GitHub
parent 9c25375f0b
commit f95960d856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ describe("HubConnectionBuilder", () => {
});
});
describe("configureLogging", async () => {
describe("configureLogging", () => {
function testLogLevels(logger: ILogger, minLevel: LogLevel) {
const capturingConsole = new CapturingConsole();
(logger as ConsoleLogger).outputConsole = capturingConsole;