mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
Correct spelling mistakes
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
// This determines when a failed assertion shows a diff with details or
|
||||
// "expected [ Array(3) ] to deeply equal [ Array(3) ]".
|
||||
// Increase the threshhold since the default (of 40 characters) is often too low.
|
||||
// Increase the threshold since the default (of 40 characters) is often too low.
|
||||
// You can override it using CHAI_TRUNCATE_THRESHOLD env var; 0 disables it.
|
||||
require('chai').config.truncateThreshold = process.env.CHAI_TRUNCATE_THRESHOLD ?
|
||||
parseFloat(process.env.CHAI_TRUNCATE_THRESHOLD) : 200;
|
||||
|
||||
@@ -665,7 +665,7 @@ export async function importUrlDialog(url: string): Promise<void> {
|
||||
/**
|
||||
* Starts or resets the collections of UserActions. This should be followed some time later by
|
||||
* a call to userActionsVerify() to check which UserActions were sent to the server. If the
|
||||
* argumet is false, then stops the collection.
|
||||
* argument is false, then stops the collection.
|
||||
*/
|
||||
export function userActionsCollect(yesNo: boolean = true) {
|
||||
return driver.executeScript("window.gristApp.comm.userActionsCollect(arguments[0])", yesNo);
|
||||
|
||||
Reference in New Issue
Block a user