fix: Typos in test descriptions

Signed-off-by: Adam Harvey <adaharve@cisco.com>
This commit is contained in:
Adam Harvey
2023-04-29 13:53:05 -04:00
parent ed05dbbfe5
commit bd58c70485
2 changed files with 7 additions and 7 deletions
@@ -34,7 +34,7 @@ describe('logCollector', () => {
expect(logs.error).toEqual(['c', '3']);
});
it('should collect some logs asynchrnously', async () => {
it('should collect some logs asynchronously', async () => {
const logs = await withLogCollector(async () => {
console.log('a');
console.warn('b');
@@ -70,7 +70,7 @@ describe('logCollector', () => {
expect(missedLogs.error).toEqual(['c', '3']);
});
it('should collect specific logs asynchrnously', async () => {
it('should collect specific logs asynchronously', async () => {
const missedLogs = await withLogCollector(async () => {
const logs = await withLogCollector(['error'], async () => {
console.log('a');