@memlab/e2e 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -9
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
## memlab E2E
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is the memlab E2E testing framework for headless/headful Chromium. It is mainly responsible
|
|
4
|
+
for controling/interacting with browser, recording heap snapshots, and logging other execution meta data.
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
const e2e = require('e2e');
|
|
9
|
-
|
|
10
|
-
// TODO: DEMONSTRATE API
|
|
11
|
-
```
|
|
6
|
+
## Full documentation
|
|
7
|
+
https://facebookincubator.github.io/memlab
|
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memlab/e2e",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"description": "memlab browser E2E interaction libraries",
|
|
6
|
+
"author": "Liang Gong <lgong@fb.com>",
|
|
7
|
+
"contributors": [],
|
|
5
8
|
"keywords": [
|
|
6
9
|
"e2e",
|
|
7
|
-
"browser"
|
|
10
|
+
"browser",
|
|
11
|
+
"puppeteer",
|
|
12
|
+
"memlab",
|
|
13
|
+
"memory",
|
|
14
|
+
"leak"
|
|
8
15
|
],
|
|
9
|
-
"author": "Liang Gong <lgong@fb.com>",
|
|
10
|
-
"contributors": [],
|
|
11
|
-
"license": "MIT",
|
|
12
16
|
"main": "dist/index.js",
|
|
13
17
|
"types": "dist/index.d.ts",
|
|
14
18
|
"files": [
|