Remove unnecessary async statements

parent 6b483cf7
......@@ -298,7 +298,7 @@ describe('Vulnerabilities app component', () => {
});
});
it(`passes the translated scanner's name to the alert (${translatedScannerName})`, async () => {
it(`passes the translated scanner's name to the alert (${translatedScannerName})`, () => {
expect(findSecurityScannerAlert().props('notEnabledScanners')[0]).toBe(
translatedScannerName,
);
......
......@@ -154,7 +154,7 @@ describe('Project vulnerability report app component', () => {
});
});
it(`passes the translated scanner's name to the alert (${translatedScannerName})`, async () => {
it(`passes the translated scanner's name to the alert (${translatedScannerName})`, () => {
expect(findSecurityScannerAlert().props('notEnabledScanners')[0]).toBe(
translatedScannerName,
);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment