@types/wallabyjs
Advanced tools
+30
-30
@@ -12,13 +12,13 @@ // Type definitions for WallabyJS | ||
| * | ||
| * @property {IWallabyCompiler=} compilers - File patterns as keys and compiler functions as values. | ||
| * @property {boolean=} debug - Flag if debug messages written to Wallaby console (default=false). | ||
| * @property {IWallabyEnvironment=} env - Specify a different test runner or change the runner settings. | ||
| * @property {string[] | IWallabyFilePattern[]} files - Specifies an array of source files or file name patterns to copy | ||
| * compilers - File patterns as keys and compiler functions as values. | ||
| * debug - Flag if debug messages written to Wallaby console (default=false). | ||
| * env - Specify a different test runner or change the runner settings. | ||
| * files - Specifies an array of source files or file name patterns to copy | ||
| * to the local cache. | ||
| * @property {Function=} postprocessor - Function that runs for every batch of file changes after all compilers and preprocessors. | ||
| * @property {Function=} preprocessors - Function that runs for every batch of file changes after all compilers. | ||
| * @property {string=} testFramework - Specifies the name and version of the testing framework you are using for your tests. | ||
| * @property {string[] | IWallabyFilePattern[]} tests - Specifies an array of test files or test file name patterns to copy | ||
| * postprocessor - Function that runs for every batch of file changes after all compilers and preprocessors. | ||
| * preprocessors - Function that runs for every batch of file changes after all compilers. | ||
| * testFramework - Specifies the name and version of the testing framework you are using for your tests. | ||
| * tests - Specifies an array of test files or test file name patterns to copy | ||
| * to the local cache. | ||
| * @property {IWallabyWorkers=} workers - Degree of parallelism used to run your tests and controls the way wallaby re-uses workers. | ||
| * workers - Degree of parallelism used to run your tests and controls the way wallaby re-uses workers. | ||
| * | ||
@@ -83,5 +83,5 @@ * @see {@link https://wallabyjs.com/docs/config/overview.html} for details. | ||
| * | ||
| * @property {string} map - Source map. | ||
| * @property {string} code - Code transformed to JavaScript. | ||
| * @property {any} ranges - All converable ranges of the original file. | ||
| * map - Source map. | ||
| * code - Code transformed to JavaScript. | ||
| * ranges - All converable ranges of the original file. | ||
| * | ||
@@ -112,4 +112,4 @@ * @see {@link https://wallabyjs.com/docs/config/compilers.html} for details. | ||
| * | ||
| * @property {string=} content - The current content of the file. | ||
| * @property {string=} path - The current path to the file. | ||
| * content - The current content of the file. | ||
| * path - The current path to the file. | ||
| * @function rename - Allows you to rename/move the file to newPath. | ||
@@ -132,6 +132,6 @@ * @function changeExt - Shortcut for the rename function allowing you to change the file extension. | ||
| * | ||
| * @property {string} pattern - File name or file pattern. | ||
| * @property {boolean=} ignore - Used to completely exclude the file from Wallaby (default=false). | ||
| * @property {boolean=} instrument - Determines if file is instrumented (default=true). | ||
| * @property {boolean=} load - Determines if the file is loaded to sandbox HTML via script tag .(default=true). | ||
| * pattern - File name or file pattern. | ||
| * ignore - Used to completely exclude the file from Wallaby (default=false). | ||
| * instrument - Determines if file is instrumented (default=true). | ||
| * load - Determines if the file is loaded to sandbox HTML via script tag .(default=true). | ||
| * | ||
@@ -152,5 +152,5 @@ * @see {@link https://wallabyjs.com/docs/config/files.html} for details. | ||
| * | ||
| * @property {IWallabyEnvironmentParameters=} params - set parameters on environment. | ||
| * @property {string=} runner - Path of local Node / PhantomJs / Electron. | ||
| * @property {string=} type - Specify a different test runner or change the runner settings. | ||
| * params - set parameters on environment. | ||
| * runner - Path of local Node / PhantomJs / Electron. | ||
| * type - Specify a different test runner or change the runner settings. | ||
| * | ||
@@ -171,4 +171,4 @@ * @see {@link https://wallabyjs.com/docs/config/runner.html} for details. | ||
| * | ||
| * @property {string=} env - Semicolon-separated spawed runner process env variables. | ||
| * @property {string=} runner - Space-separated spawed runner process flags. | ||
| * env - Semicolon-separated spawed runner process env variables. | ||
| * runner - Space-separated spawed runner process flags. | ||
| * | ||
@@ -187,4 +187,4 @@ * @see {@link https://wallabyjs.com/docs/config/runner.html} for details. | ||
| * | ||
| * @property {number=} width - Width in pixels for the viewport size in PhantomJs/Electron. | ||
| * @property {number=} height - height in pixels for the viewport size in PhantomJs/Electron. | ||
| * width - Width in pixels for the viewport size in PhantomJs/Electron. | ||
| * height - height in pixels for the viewport size in PhantomJs/Electron. | ||
| */ | ||
@@ -201,3 +201,3 @@ export interface IWallabyEnvironmentViewportSize { | ||
| * | ||
| * @property {boolean=} recycle - Specifies the degree of parallelism used to run your tests and | ||
| * recycle - Specifies the degree of parallelism used to run your tests and | ||
| * controls the way wallaby re-uses workers. | ||
@@ -216,6 +216,6 @@ * | ||
| * | ||
| * @property {string=} localProjectDir - String property which returns the project local folder. | ||
| * @property {string=} projectCacheDir - String property which returns the project cache folder. | ||
| * @property {IWallabyBuiltInCompilers=} compilers - Property which allows you to access the built-in TypeScript, CoffeeScript and Babel compilers. | ||
| * @property {object=} defaults - Property which allows you to set the default values for file object properties. | ||
| * localProjectDir - String property which returns the project local folder. | ||
| * projectCacheDir - String property which returns the project cache folder. | ||
| * compilers - Property which allows you to access the built-in TypeScript, CoffeeScript and Babel compilers. | ||
| * defaults - Property which allows you to set the default values for file object properties. | ||
| * | ||
@@ -222,0 +222,0 @@ * @see {@link https://wallabyjs.com/docs/config/overview.html} for details. |
| { | ||
| "name": "@types/wallabyjs", | ||
| "version": "0.0.7", | ||
| "version": "0.0.8", | ||
| "description": "TypeScript definitions for WallabyJS", | ||
@@ -23,4 +23,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/wallabyjs", | ||
| "dependencies": {}, | ||
| "typesPublisherContentHash": "9f276f52d568badd1dc67378f6e9225ee0f7cfc345b03363847668d046983569", | ||
| "typeScriptVersion": "3.6" | ||
| "typesPublisherContentHash": "136a85a2c3a091c4ab2c85d4ee7227c0bb5dd730c677a482e6f99b5b87516ed8", | ||
| "typeScriptVersion": "4.3" | ||
| } |
@@ -11,3 +11,3 @@ # Installation | ||
| ### Additional Details | ||
| * Last updated: Fri, 02 Jul 2021 18:05:14 GMT | ||
| * Last updated: Sat, 29 Apr 2023 04:03:47 GMT | ||
| * Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
9831
-7.72%