@sprucelabs/jest-sheets-reporter 1.3.47 → 1.3.50
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.
|
@@ -47,7 +47,7 @@ class SheetsAdapterTest extends AbstractSheetsReporterTest_1.default {
|
|
|
47
47
|
test_1.assert.isEqual(actualValue, expected);
|
|
48
48
|
}
|
|
49
49
|
static async updatingCellManyTimesAtOnceDoesNotHitRateLimit() {
|
|
50
|
-
await Promise.all(new Array(
|
|
50
|
+
await Promise.all(new Array(55).fill(0).map(async (_, idx) => {
|
|
51
51
|
await this.adapter.updateCell({
|
|
52
52
|
sheetId: this.sheetId,
|
|
53
53
|
worksheetId: this.worksheetId,
|
|
@@ -64,6 +64,6 @@ __decorate([
|
|
|
64
64
|
(0, test_1.test)('can set string value', 'it worked!')
|
|
65
65
|
], SheetsAdapterTest, "canUpdateCell", null);
|
|
66
66
|
__decorate([
|
|
67
|
-
|
|
67
|
+
test_1.test.skip()
|
|
68
68
|
], SheetsAdapterTest, "updatingCellManyTimesAtOnceDoesNotHitRateLimit", null);
|
|
69
69
|
exports.default = SheetsAdapterTest;
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@sprucelabs/resolve-path-aliases"
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
|
-
"version": "1.3.
|
|
16
|
+
"version": "1.3.50",
|
|
17
17
|
"main": "./build/SheetsReporter.js",
|
|
18
18
|
"types": "./build/SheetsReporter.d.ts",
|
|
19
19
|
"description": "Have your Jest tests update a Google Spreadsheet™®©. 📡",
|
|
@@ -63,20 +63,20 @@
|
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@sprucelabs/resolve-path-aliases": "^1.0.244",
|
|
65
65
|
"@sprucelabs/semantic-release": "^4.0.8",
|
|
66
|
-
"@sprucelabs/test": "^7.7.
|
|
67
|
-
"@types/google-spreadsheet": "^3.2.
|
|
68
|
-
"@types/node": "^
|
|
66
|
+
"@sprucelabs/test": "^7.7.334",
|
|
67
|
+
"@types/google-spreadsheet": "^3.2.3",
|
|
68
|
+
"@types/node": "^18.0.0",
|
|
69
69
|
"chokidar-cli": "^3.0.0",
|
|
70
|
-
"concurrently": "^7.2.
|
|
71
|
-
"eslint": "^8.
|
|
72
|
-
"eslint-config-spruce": "^10.11.
|
|
73
|
-
"jest": "^28.1.
|
|
70
|
+
"concurrently": "^7.2.2",
|
|
71
|
+
"eslint": "^8.19.0",
|
|
72
|
+
"eslint-config-spruce": "^10.11.3",
|
|
73
|
+
"jest": "^28.1.2",
|
|
74
74
|
"jest-reporters": "^0.0.2",
|
|
75
|
-
"prettier": "^2.7.
|
|
75
|
+
"prettier": "^2.7.1",
|
|
76
76
|
"ts-node": "^10.8.1",
|
|
77
77
|
"tsc-watch": "^5.0.3",
|
|
78
78
|
"tsconfig-paths": "^4.0.0",
|
|
79
|
-
"typescript": "^4.7.
|
|
79
|
+
"typescript": "^4.7.4"
|
|
80
80
|
},
|
|
81
81
|
"jest": {
|
|
82
82
|
"testTimeout": 300000,
|