We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d860ec5 commit f9a67f7Copy full SHA for f9a67f7
lib/window.class.spec.ts
@@ -7,7 +7,7 @@ jest.mock('jimp', () => {
7
});
8
9
describe("Window class", () => {
10
- it("should retrieve the window region via its native adapter", async () => {
+ it("should retrieve the window region via provider", async () => {
11
// GIVEN
12
const windowMock = jest.fn();
13
const providerRegistryMock = mockPartial<ProviderRegistry>({
@@ -28,7 +28,7 @@ describe("Window class", () => {
28
expect(windowMock).toBeCalledWith(mockWindowHandle);
29
30
31
- it("should retrieve the window title via its native adapter", async () => {
+ it("should retrieve the window title via provider", async () => {
32
33
34
0 commit comments