-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e2e tests added #210
e2e tests added #210
Conversation
a9c5baf
to
4f8e004
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also needs rebase
package.json
Outdated
}, | ||
"dependencies": { | ||
"@kubernetes/client-node": "^0.22.0", | ||
"@podman-desktop/api": "^1.12.0", | ||
"fs-extra": "^11.2.0", | ||
"got": "^14.4.2", | ||
"js-yaml": "^4.1.0" | ||
"js-yaml": "^4.1.0", | ||
"node-fetch": "^2.6.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be in devDependencies ?
d32965c
to
533f014
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quite ok, except the review comments. but e2e tests are overal ok!
bcdace9
to
65efca9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Such a PR should be split in 2 parts: switch to module then add E2E tests
@jeffmaury @xbabalov First we need to switch to ES modules and then we could merge this PR. I will open an issue. |
5b09e70
to
44a446c
Compare
#221 was merged, I rebased and updated the files, so this should be ready for merge as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
package.json
Outdated
"xvfb-maybe": "^0.2.1", | ||
"zip-local": "^0.3.5", | ||
"js-yaml": "^4.1.0", | ||
"node-fetch": "^2.6.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
node-fetch is to be removed as fetch is now native since fetch is now part of nodejs
Signed-off-by: xbabalov <[email protected]>
Signed-off-by: xbabalov <[email protected]>
Signed-off-by: xbabalov <[email protected]>
Signed-off-by: xbabalov <[email protected]>
Signed-off-by: xbabalov <[email protected]>
Signed-off-by: xbabalov <[email protected]>
Signed-off-by: xbabalov <[email protected]>
Signed-off-by: xbabalov <[email protected]>
package.json
Outdated
}, | ||
"dependencies": { | ||
"@kubernetes/client-node": "^0.22.1", | ||
"@podman-desktop/api": "^1.13.3", | ||
"fs-extra": "^11.2.0", | ||
"got": "^14.4.3", | ||
"js-yaml": "^4.1.0" | ||
"got": "^14.4.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did got version get lowered ?
Signed-off-by: xbabalov <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@xbabalov @jeffmaury Thanks! |
Added e2e tests that cover extension installation and handling.
Issues: #199 and #201