mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Fix webpack config for react Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce package for discovering html elements in unit tests Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Switch to using discovery of html elements from package Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce competition for starting react application inside the Feature Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Move stuff in application start to earlier timeslot having no real need to be done so late Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Switch to using react application root feature being more friendly to extending Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Switch to using more familiar pattern of higher order components for wrapping react application Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Adapt to more familiar pattern for higher order components Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Rename feature for clarity Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> --------- Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
34 lines
842 B
JSON
34 lines
842 B
JSON
{
|
|
"name": "@k8slens/react-testing-library-discovery",
|
|
"private": false,
|
|
"version": "1.0.0-alpha.0",
|
|
"description": "A way to discover HTML-elements using react-testing-library",
|
|
"type": "commonjs",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lensapp/lens.git"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"author": {
|
|
"name": "OpenLens Authors",
|
|
"email": "info@k8slens.dev"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/lensapp/lens",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"dev": "webpack --mode=development --watch",
|
|
"lint": "lens-lint",
|
|
"lint:fix": "lens-lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@testing-library/dom": "^8.19.0",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^13.4.0"
|
|
}
|
|
}
|