screenci 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/README.md +44 -58
  2. package/dist/Dockerfile +48 -0
  3. package/dist/cli.d.ts +21 -1
  4. package/dist/cli.d.ts.map +1 -1
  5. package/dist/cli.js +1346 -384
  6. package/dist/cli.js.map +1 -1
  7. package/dist/e2e/instrument.e2e.js +12 -0
  8. package/dist/e2e/instrument.e2e.js.map +1 -1
  9. package/dist/index.d.ts +9 -8
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +3 -2
  12. package/dist/index.js.map +1 -1
  13. package/dist/playwright.config.d.ts +1 -1
  14. package/dist/src/asset.d.ts +27 -67
  15. package/dist/src/asset.d.ts.map +1 -1
  16. package/dist/src/asset.js +44 -45
  17. package/dist/src/asset.js.map +1 -1
  18. package/dist/src/caption.d.ts +164 -54
  19. package/dist/src/caption.d.ts.map +1 -1
  20. package/dist/src/caption.js +304 -131
  21. package/dist/src/caption.js.map +1 -1
  22. package/dist/src/events.d.ts +69 -27
  23. package/dist/src/events.d.ts.map +1 -1
  24. package/dist/src/events.js +64 -40
  25. package/dist/src/events.js.map +1 -1
  26. package/dist/src/instrument.d.ts.map +1 -1
  27. package/dist/src/instrument.js +142 -35
  28. package/dist/src/instrument.js.map +1 -1
  29. package/dist/src/logger.d.ts.map +1 -1
  30. package/dist/src/logger.js +2 -1
  31. package/dist/src/logger.js.map +1 -1
  32. package/dist/src/recording.d.ts +4 -0
  33. package/dist/src/recording.d.ts.map +1 -0
  34. package/dist/src/recording.js +2 -0
  35. package/dist/src/recording.js.map +1 -0
  36. package/dist/src/recordingData.d.ts +145 -0
  37. package/dist/src/recordingData.d.ts.map +1 -0
  38. package/dist/src/recordingData.js +2 -0
  39. package/dist/src/recordingData.js.map +1 -0
  40. package/dist/src/types.d.ts +201 -71
  41. package/dist/src/types.d.ts.map +1 -1
  42. package/dist/src/types.js +31 -1
  43. package/dist/src/types.js.map +1 -1
  44. package/dist/src/video.d.ts.map +1 -1
  45. package/dist/src/video.js +29 -24
  46. package/dist/src/video.js.map +1 -1
  47. package/dist/src/voices.d.ts +344 -41
  48. package/dist/src/voices.d.ts.map +1 -1
  49. package/dist/src/voices.js +261 -30
  50. package/dist/src/voices.js.map +1 -1
  51. package/dist/test-fixtures/screenci.config.d.ts +5 -0
  52. package/dist/test-fixtures/screenci.config.d.ts.map +1 -0
  53. package/dist/test-fixtures/screenci.config.js +4 -0
  54. package/dist/test-fixtures/screenci.config.js.map +1 -0
  55. package/dist/tsconfig.tsbuildinfo +1 -1
  56. package/package.json +39 -3
  57. package/skills/playwright-cli/SKILL.md +348 -0
  58. package/skills/screenci/SKILL.md +55 -0
  59. package/skills/screenci/references/init.md +47 -0
  60. package/skills/screenci/references/record.md +41 -0
  61. package/dist/reporter.d.ts +0 -9
  62. package/dist/reporter.d.ts.map +0 -1
  63. package/dist/reporter.js +0 -49
  64. package/dist/reporter.js.map +0 -1
  65. package/dist/src/caption.test-d.d.ts +0 -2
  66. package/dist/src/caption.test-d.d.ts.map +0 -1
  67. package/dist/src/caption.test-d.js +0 -50
  68. package/dist/src/caption.test-d.js.map +0 -1
@@ -1,42 +1,273 @@
1
1
  /**
2
- * Named voices available for use with `createCaptions`.
2
+ * TTS model types for use with `createVoiceOvers`.
3
3
  *
4
- * Voices are grouped by language. Only voices belonging to a language may be
5
- * used with captions written in that language the TypeScript types enforce
6
- * this when using the multi-language overload of `createCaptions`.
4
+ * - `expressive`: Gemini TTS more expressive, natural-sounding speech.
5
+ * - `consistent`: Chirp 3 HDconsistent, high-quality synthesis.
7
6
  *
8
- * The actual provider voice IDs are intentionally kept out of this package
9
- * and are only known to the rendering infrastructure.
7
+ * @example
8
+ * ```ts
9
+ * createVoiceOvers({
10
+ * voice: { name: voices.Ava, modelType: modelTypes.expressive },
11
+ * languages: { en: { captions: { intro: 'Hello' } } },
12
+ * })
13
+ * ```
14
+ */
15
+ export const modelTypes = {
16
+ expressive: 'expressive',
17
+ consistent: 'consistent',
18
+ };
19
+ /**
20
+ * BCP-47 language regions for use with `createVoiceOvers`.
21
+ *
22
+ * Pass a region as `region` inside a language entry to select the
23
+ * specific locale variant used for speech synthesis.
10
24
  *
11
- * Example:
25
+ * @example
12
26
  * ```ts
13
- * import { voices } from 'screenci'
27
+ * createVoiceOvers({
28
+ * voice: { name: voices.Ava },
29
+ * languages: {
30
+ * en: { region: languageRegions.en.US, captions: { intro: 'Hello' } },
31
+ * fr: { region: languageRegions.fr.FR, captions: { intro: 'Bonjour' } },
32
+ * },
33
+ * })
34
+ * ```
35
+ */
36
+ export const languageRegions = {
37
+ ar: { SA: 'ar-SA', AE: 'ar-AE', EG: 'ar-EG' },
38
+ az: { AZ: 'az-AZ' },
39
+ bn: { BD: 'bn-BD', IN: 'bn-IN' },
40
+ bg: { BG: 'bg-BG' },
41
+ ca: { ES: 'ca-ES' },
42
+ cs: { CZ: 'cs-CZ' },
43
+ da: { DK: 'da-DK' },
44
+ de: { DE: 'de-DE', AT: 'de-AT', CH: 'de-CH' },
45
+ el: { GR: 'el-GR' },
46
+ en: { US: 'en-US', GB: 'en-GB', AU: 'en-AU', IN: 'en-IN' },
47
+ es: { ES: 'es-ES', MX: 'es-MX', US: 'es-US', AR: 'es-AR' },
48
+ et: { EE: 'et-EE' },
49
+ eu: { ES: 'eu-ES' },
50
+ fa: { IR: 'fa-IR' },
51
+ fi: { FI: 'fi-FI' },
52
+ fil: { PH: 'fil-PH' },
53
+ fr: { FR: 'fr-FR', CA: 'fr-CA', BE: 'fr-BE', CH: 'fr-CH' },
54
+ gl: { ES: 'gl-ES' },
55
+ gu: { IN: 'gu-IN' },
56
+ he: { IL: 'he-IL' },
57
+ hi: { IN: 'hi-IN' },
58
+ hr: { HR: 'hr-HR' },
59
+ hu: { HU: 'hu-HU' },
60
+ hy: { AM: 'hy-AM' },
61
+ id: { ID: 'id-ID' },
62
+ is: { IS: 'is-IS' },
63
+ it: { IT: 'it-IT' },
64
+ ja: { JP: 'ja-JP' },
65
+ ka: { GE: 'ka-GE' },
66
+ kn: { IN: 'kn-IN' },
67
+ ko: { KR: 'ko-KR' },
68
+ lt: { LT: 'lt-LT' },
69
+ lv: { LV: 'lv-LV' },
70
+ mk: { MK: 'mk-MK' },
71
+ ml: { IN: 'ml-IN' },
72
+ mn: { MN: 'mn-MN' },
73
+ mr: { IN: 'mr-IN' },
74
+ ms: { MY: 'ms-MY' },
75
+ my: { MM: 'my-MM' },
76
+ nb: { NO: 'nb-NO' },
77
+ ne: { NP: 'ne-NP' },
78
+ nl: { NL: 'nl-NL', BE: 'nl-BE' },
79
+ pa: { IN: 'pa-IN' },
80
+ pl: { PL: 'pl-PL' },
81
+ pt: { BR: 'pt-BR', PT: 'pt-PT' },
82
+ ro: { RO: 'ro-RO' },
83
+ ru: { RU: 'ru-RU' },
84
+ si: { LK: 'si-LK' },
85
+ sk: { SK: 'sk-SK' },
86
+ sl: { SI: 'sl-SI' },
87
+ sq: { AL: 'sq-AL' },
88
+ sr: { RS: 'sr-RS' },
89
+ sv: { SE: 'sv-SE' },
90
+ sw: { KE: 'sw-KE', TZ: 'sw-TZ' },
91
+ ta: { IN: 'ta-IN', LK: 'ta-LK' },
92
+ te: { IN: 'te-IN' },
93
+ th: { TH: 'th-TH' },
94
+ tr: { TR: 'tr-TR' },
95
+ uk: { UA: 'uk-UA' },
96
+ ur: { PK: 'ur-PK' },
97
+ vi: { VN: 'vi-VN' },
98
+ zh: { CN: 'zh-CN', TW: 'zh-TW', HK: 'zh-HK' },
99
+ };
100
+ /**
101
+ * Named voices available for use with `createVoiceOvers`.
102
+ *
103
+ * Built-in voices are language-agnostic at the call site:
14
104
  *
15
- * createCaptions({
16
- * en: { voice: voices.en.Ava, captions: { intro: 'Hello' } },
17
- * fi: { voice: voices.fi.Selma, captions: { intro: 'Hei' } },
105
+ * ```ts
106
+ * createVoiceOvers({
107
+ * en: { voice: voices.Aria, captions: { intro: 'Hello' } },
108
+ * fi: { voice: voices.Aria, captions: { intro: 'Hei' } },
109
+ * })
110
+ * ```
111
+ *
112
+ * ElevenLabs voices are passed explicitly by provider voice id:
113
+ *
114
+ * ```ts
115
+ * createVoiceOvers({
116
+ * en: {
117
+ * voice: voices.elevenlabs({ voiceId: 'tMvyQtpCVQ0DkixuYm6J' }),
118
+ * captions: { intro: 'Hello' },
119
+ * },
18
120
  * })
19
121
  * ```
20
122
  */
21
123
  export const voices = {
22
- fi: {
23
- Martti: 'fi.Martti',
24
- Selma: 'fi.Selma',
25
- Noora: 'fi.Noora',
26
- },
27
- en: {
28
- Jude: 'en.Jude',
29
- Ava: 'en.Ava',
30
- Andrew: 'en.Andrew',
31
- Adam: 'en.Adam',
32
- Alloy: 'en.Alloy',
33
- Aria: 'en.Aria',
34
- Bree: 'en.Bree',
35
- Brian: 'en.Brian',
36
- Davis: 'en.Davis',
37
- Emma: 'en.Emma',
38
- Emma2: 'en.Emma2',
39
- Jane: 'en.Jane',
40
- },
124
+ /** Male — Clear — Direct and structured, ideal for straightforward explanations. */
125
+ Adrian: 'Adrian',
126
+ /** Female — Soft — A calm and soothing voice that reassures users and reduces friction. */
127
+ Aria: 'Aria',
128
+ /** Female — Bright — Fresh and optimistic, bringing clarity and positivity. */
129
+ Ava: 'Ava',
130
+ /** Female — Bright — Cheerful and energetic, uplifting the user experience. */
131
+ Clara: 'Clara',
132
+ /** Male — Informative — Clear and educational, focused on delivering useful information. */
133
+ Daniel: 'Daniel',
134
+ /** Female — Smooth — Graceful and composed, maintaining a consistent flow of communication. */
135
+ Elena: 'Elena',
136
+ /** Female — Youthful — Playful and fresh, appealing to a modern and dynamic audience. */
137
+ Emma: 'Emma',
138
+ /** Male — Friendly — Warm and approachable, making interactions feel personal and welcoming. */
139
+ Ethan: 'Ethan',
140
+ /** Male — Easy-going — Casual and relaxed, reducing stress in interactions. */
141
+ Evan: 'Evan',
142
+ /** Female — Gentle — Soft and caring, ideal for sensitive or supportive contexts. */
143
+ Grace: 'Grace',
144
+ /** Male — Knowledgeable — Insightful and reliable, conveying expertise and confidence. */
145
+ Hassan: 'Hassan',
146
+ /** Female — Mature — Experienced and composed, conveying trust and authority. */
147
+ Helena: 'Helena',
148
+ /** Female — Forward — Proactive and confident, driving users toward action. */
149
+ Isabella: 'Isabella',
150
+ /** Male — Smooth — Polished and fluid, ideal for seamless and premium experiences. */
151
+ Julian: 'Julian',
152
+ /** Female — Warm — Kind and empathetic, building trust and comfort. */
153
+ Layla: 'Layla',
154
+ /** Male — Excitable — High-energy and enthusiastic, great for engagement and motivation. */
155
+ Leo: 'Leo',
156
+ /** Female — Breezy — Light and effortless, creating a relaxed and easygoing interaction. */
157
+ Lily: 'Lily',
158
+ /** Male — Firm — Confident and directive, suited for clear guidance and authority. */
159
+ Marcus: 'Marcus',
160
+ /** Male — Upbeat — Energetic and lively, keeping interactions engaging and quick. */
161
+ Max: 'Max',
162
+ /** Female — Easy-going — Relaxed and flexible, reducing pressure during interactions. */
163
+ Maya: 'Maya',
164
+ /** Male — Firm — Grounded and assertive, ensuring clarity and direction. */
165
+ Miles: 'Miles',
166
+ /** Male — Breathy — Soft and intimate, creating a close and attentive feel. */
167
+ Noah: 'Noah',
168
+ /** Female — Firm — Strong and decisive, helping users stay on track. */
169
+ Nora: 'Nora',
170
+ /** Male — Informative — Detailed and explanatory, ideal for complex information delivery. */
171
+ Omar: 'Omar',
172
+ /** Male — Lively — Dynamic and spirited, adding energy to user interactions. */
173
+ Ryan: 'Ryan',
174
+ /** Male — Casual — Relaxed and informal, perfect for conversational experiences. */
175
+ Sam: 'Sam',
176
+ /** Female — Clear — Precise and easy to understand, minimizing confusion. */
177
+ Sophie: 'Sophie',
178
+ /** Male — Even — Balanced and steady, providing a consistent user experience. */
179
+ Thomas: 'Thomas',
180
+ /** Male — Gravelly — A deep, textured voice that conveys strength and seriousness. */
181
+ Victor: 'Victor',
182
+ /** Female — Upbeat — Positive and motivating, encouraging continued interaction. */
183
+ Zoe: 'Zoe',
184
+ elevenlabs: ({ voiceId }) => `elevenlabs:${voiceId}`,
41
185
  };
186
+ const supportedLanguageCodes = [
187
+ 'ar',
188
+ 'bn',
189
+ 'nl',
190
+ 'en',
191
+ 'fr',
192
+ 'de',
193
+ 'hi',
194
+ 'id',
195
+ 'it',
196
+ 'ja',
197
+ 'ko',
198
+ 'mr',
199
+ 'pl',
200
+ 'pt',
201
+ 'ro',
202
+ 'ru',
203
+ 'es',
204
+ 'ta',
205
+ 'te',
206
+ 'th',
207
+ 'tr',
208
+ 'uk',
209
+ 'vi',
210
+ 'af',
211
+ 'sq',
212
+ 'am',
213
+ 'hy',
214
+ 'az',
215
+ 'eu',
216
+ 'be',
217
+ 'bg',
218
+ 'my',
219
+ 'ca',
220
+ 'ceb',
221
+ 'cmn',
222
+ 'hr',
223
+ 'cs',
224
+ 'da',
225
+ 'et',
226
+ 'fil',
227
+ 'fi',
228
+ 'gl',
229
+ 'ka',
230
+ 'el',
231
+ 'gu',
232
+ 'ht',
233
+ 'he',
234
+ 'hu',
235
+ 'is',
236
+ 'jv',
237
+ 'kn',
238
+ 'kok',
239
+ 'lo',
240
+ 'la',
241
+ 'lv',
242
+ 'lt',
243
+ 'lb',
244
+ 'mk',
245
+ 'mai',
246
+ 'mg',
247
+ 'ms',
248
+ 'ml',
249
+ 'mn',
250
+ 'ne',
251
+ 'nb',
252
+ 'nn',
253
+ 'or',
254
+ 'ps',
255
+ 'fa',
256
+ 'pa',
257
+ 'sr',
258
+ 'sd',
259
+ 'si',
260
+ 'sk',
261
+ 'sl',
262
+ 'sw',
263
+ 'sv',
264
+ 'ur',
265
+ ];
266
+ /** Returns true when the value is a `CustomVoiceRef` object. */
267
+ export function isCustomVoiceRef(value) {
268
+ return (typeof value === 'object' &&
269
+ value !== null &&
270
+ 'path' in value &&
271
+ typeof value.path === 'string');
272
+ }
42
273
  //# sourceMappingURL=voices.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"voices.js","sourceRoot":"","sources":["../../src/voices.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,EAAE,EAAE;QACF,MAAM,EAAE,WAAoB;QAC5B,KAAK,EAAE,UAAmB;QAC1B,KAAK,EAAE,UAAmB;KAC3B;IACD,EAAE,EAAE;QACF,IAAI,EAAE,SAAkB;QACxB,GAAG,EAAE,QAAiB;QACtB,MAAM,EAAE,WAAoB;QAC5B,IAAI,EAAE,SAAkB;QACxB,KAAK,EAAE,UAAmB;QAC1B,IAAI,EAAE,SAAkB;QACxB,IAAI,EAAE,SAAkB;QACxB,KAAK,EAAE,UAAmB;QAC1B,KAAK,EAAE,UAAmB;QAC1B,IAAI,EAAE,SAAkB;QACxB,KAAK,EAAE,UAAmB;QAC1B,IAAI,EAAE,SAAkB;KACzB;CACO,CAAA"}
1
+ {"version":3,"file":"voices.js","sourceRoot":"","sources":["../../src/voices.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;CAChB,CAAA;AAIV;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAC7C,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAChC,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAC7C,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAC1D,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAC1D,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,GAAG,EAAE,EAAE,EAAE,EAAE,QAAQ,EAAE;IACrB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAC1D,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAChC,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAChC,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE;IACnB,EAAE,EAAE,EAAE,EAAE,EAAE,OA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"}
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ projectName: string;
3
+ };
4
+ export default _default;
5
+ //# sourceMappingURL=screenci.config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"screenci.config.d.ts","sourceRoot":"","sources":["../../test-fixtures/screenci.config.ts"],"names":[],"mappings":";;;AAAA,wBAEC"}
@@ -0,0 +1,4 @@
1
+ export default {
2
+ projectName: 'Test Project',
3
+ };
4
+ //# sourceMappingURL=screenci.config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"screenci.config.js","sourceRoot":"","sources":["../../test-fixtures/screenci.config.ts"],"names":[],"mappings":"AAAA,eAAe;IACb,WAAW,EAAE,cAAc;CAC5B,CAAA"}