We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ba85d2 commit 2999b91Copy full SHA for 2999b91
tests/primevue.ts
@@ -5,16 +5,10 @@ export async function test(options: RunOptions) {
5
await runInRepo({
6
...options,
7
repo: 'primefaces/primevue',
8
- tag: '3.53.0',
9
- build: 'build',
+ branch: 'master',
+ // 4.3.1 but not tagged on GitHub. It's the latest commit that with passing tests.
10
+ commit: 'e53d48ed62dc845d8f8ca3c7ccd00941229b98f9',
11
+ build: ['format', 'build'],
12
test: 'test:unit',
- patchFiles: {
- 'components/lib/inputnumber/InputNumber.spec.js': (content) => {
13
- return content.replaceAll(
14
- `it('is keypress called`,
15
- `it.skip('is keypress called`,
16
- )
17
- },
18
19
})
20
}
0 commit comments