mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-12 12:23:08 +08:00

* feat: The clearIcon of the Select component remain displayed when hover=none device * chore: tmp of mobile test * test: support mobile snapshot * test: adjust logic * chore: force trigger * chore: rm is mobile config * chore: update enable check * chore: clean up * chore: force trigger * chore: debug for query * chore: trigger info * test: force disable mobile style --------- Co-authored-by: 刘欢 <lh01217311@antgroup.com> Co-authored-by: 二货机器人 <smith3816@gmail.com>
16 lines
428 B
JavaScript
16 lines
428 B
JavaScript
// jest-puppeteer.config.js
|
||
module.exports = {
|
||
launch: {
|
||
headless: 'new',
|
||
ignoreDefaultArgs: ['--disable-extensions'],
|
||
args: [
|
||
// Required for Docker version of Puppeteer
|
||
'--no-sandbox',
|
||
'--disable-setuid-sandbox',
|
||
// This will write shared memory files into /tmp instead of /dev/shm,
|
||
// because Docker’s default for /dev/shm is 64MB
|
||
'--disable-dev-shm-usage',
|
||
],
|
||
},
|
||
};
|