-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.spec.ts
70 lines (59 loc) · 2.06 KB
/
index.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import ResembleHelper from "../src";
const { container } = require('codeceptjs');
const helpers = container.helpers();
let helper = new ResembleHelper({ baseFolder: './__test__/screenshots/base/',
diffFolder: './__test__/screenshots/diff/',
screenshotFolder: './__test__/output',
prepareBaseImage: true })
describe('_getHelper()', () => {
test('should return error when no matching helper found', () => {
try {
helper._getHelper()
} catch (e: any) {
expect(e.message).toEqual('No matching helper found. Supported helpers: Playwright/Puppeteer/WebDriver/TestCafe/Appium')
}
});
})
describe('_getPrepareBaseImage()', () => {
beforeAll(() => {
helpers['Playwright'] = { hello: 1 }
})
test('should return false when no prepareBaseImage is provided', () => {
expect(helper._getPrepareBaseImage({ prepareBaseImage: false, tolerance: 1 })).toBeFalsy()
});
test('should return true when prepareBaseImage matched with config', () => {
expect(helper._getPrepareBaseImage({ prepareBaseImage: true })).toBeTruthy()
});
})
describe('_getDiffImagePath()', () => {
beforeAll(() => {
helpers['Playwright'] = { hello: 1 }
})
test('should return diffImagePath', () => {
expect(helper._getDiffImagePath('hello')).toContain('Diff_hello.png')
});
})
describe('_getActualImagePath()', () => {
beforeAll(() => {
helpers['Playwright'] = { hello: 1 }
})
test('should return ActualImagePath', () => {
expect(helper._getActualImagePath('hello')).toContain('hello')
});
})
describe('_getBaseImagePath()', () => {
beforeAll(() => {
helpers['Playwright'] = { hello: 1 }
})
test('should return BaseImagePath', () => {
expect(helper._getBaseImagePath('hello', {})).toContain('hello')
});
})
describe('resolvePath()', () => {
beforeAll(() => {
helpers['Playwright'] = { hello: 1 }
})
test('should return resolvePath', () => {
expect(helper.resolvePath('hello')).toContain('hello')
});
})