[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:
parent
9c25375f0b
commit
f95960d856
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue