Skip to content

Commit e7d6def

Browse files
committed
Lint
1 parent 450955f commit e7d6def

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

test/angular/angular-wizard.test.ts

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import { describe, expect, it } from 'vitest';
33
import { buildOutroMessage } from '../../src/angular/angular-wizard';
44
import { getInitCallArgs } from '../../src/angular/codemods/main';
55

6-
76
describe('angular-wizard', () => {
8-
97
describe('buildOutroMessage', () => {
108
it('returns the correct outro message if example component was created', () => {
119
expect(buildOutroMessage(true)).toMatchInlineSnapshot(`
@@ -36,9 +34,11 @@ describe('angular-wizard', () => {
3634
replay: true,
3735
logs: true,
3836
});
39-
expect(args).toEqual(expect.objectContaining({
40-
sendDefaultPii: true,
41-
}));
37+
expect(args).toEqual(
38+
expect.objectContaining({
39+
sendDefaultPii: true,
40+
}),
41+
);
4242
});
4343

4444
it('returns the correct init call arguments when features are disabled', () => {
@@ -48,9 +48,11 @@ describe('angular-wizard', () => {
4848
logs: false,
4949
});
5050

51-
expect(args).toEqual(expect.objectContaining({
52-
sendDefaultPii: true,
53-
}));
51+
expect(args).toEqual(
52+
expect.objectContaining({
53+
sendDefaultPii: true,
54+
}),
55+
);
5456
});
5557
});
56-
});
58+
});

0 commit comments

Comments
 (0)