Revert deleted file use by external integration tests

pull/2175/head
Jérémy Rialland 2022-06-21 13:35:51 +02:00 committed by Jérémy Rialland
parent 1460080595
commit 61477f9a9c
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import { readFileSync } from 'fs'
const packages = JSON.parse(
readFileSync(new URL('../package.json', import.meta.url).pathname)
)
console.log('cypress@' + packages.devDependencies.cypress)
for (const key of Object.keys(packages.devDependencies).filter(
(k) => k !== 'cypress' && k.startsWith('cypress')
)) {
console.log(key + '@' + packages.devDependencies[key])
}