-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcheckly-config-loader.spec.ts
92 lines (82 loc) · 3.26 KB
/
checkly-config-loader.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import * as path from 'path'
import { loadChecklyConfig } from '../checkly-config-loader'
import { splitConfigFilePath } from '../util'
describe('loadChecklyConfig()', () => {
it('config file should export an object', async () => {
try {
await loadChecklyConfig(path.join(__dirname, 'fixtures', 'configs'), ['no-export-config.js'])
} catch (e: any) {
expect(e.message).toContain('Config object missing a logicalId as type string')
}
})
it('config file should export an object with projectName and logicalId', async () => {
try {
await loadChecklyConfig(path.join(__dirname, 'fixtures', 'configs'), ['no-logical-id-config.js'])
} catch (e: any) {
expect(e.message).toContain('Config object missing a logicalId as type string')
}
})
it('error should indicate the tried file name combinations', async () => {
const configDir = path.join(__dirname, 'fixtures', 'not-existing-config-path')
try {
await loadChecklyConfig(configDir)
} catch (e: any) {
expect(e.message).toContain(`Unable to locate a config at ${configDir} with ${
['checkly.config.ts', 'checkly.config.mts', 'checkly.config.cts', 'checkly.config.js', 'checkly.config.mjs', 'checkly.config.cjs'].join(', ')}.`)
}
})
it('config TS file should export an object', async () => {
const filename = 'good-config.ts'
const configFile = `./fixtures/configs/${filename}`
const { configDirectory, configFilenames } = splitConfigFilePath(configFile)
expect(configFilenames).toEqual([filename])
expect(configDirectory).toEqual(path.dirname(path.join(process.cwd(), configFile)))
const {
config,
} = await loadChecklyConfig(path.join(__dirname, 'fixtures', 'configs'), [filename])
expect(config).toMatchObject({
checks: {
checkMatch: '**/*.check.ts',
browserChecks: {
testMatch: '**/__checks__/*.spec.ts',
},
},
})
})
it('config JS file should export an object', async () => {
const filename = 'good-config.js'
const configFile = `./fixtures/configs/${filename}`
const { configDirectory, configFilenames } = splitConfigFilePath(configFile)
expect(configFilenames).toEqual([filename])
expect(configDirectory).toEqual(path.dirname(path.join(process.cwd(), configFile)))
const {
config,
} = await loadChecklyConfig(path.join(__dirname, 'fixtures', 'configs'), [filename])
expect(config).toMatchObject({
checks: {
checkMatch: '**/*.check.ts',
browserChecks: {
testMatch: '**/__checks__/*.spec.ts',
},
},
})
})
it('config from absolute path', async () => {
const filename = 'good-config.ts'
const configFile = `./fixtures/configs/${filename}`
const { configDirectory, configFilenames } = splitConfigFilePath(path.join(process.cwd(), configFile))
expect(configFilenames).toEqual([filename])
expect(configDirectory).toEqual(path.dirname(path.join(process.cwd(), configFile)))
const {
config,
} = await loadChecklyConfig(path.join(__dirname, 'fixtures', 'configs'), [filename])
expect(config).toMatchObject({
checks: {
checkMatch: '**/*.check.ts',
browserChecks: {
testMatch: '**/__checks__/*.spec.ts',
},
},
})
})
})