gt 0.10.0 → 2.7.0
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/CHANGELOG.md +1275 -0
- package/LICENSE.md +105 -0
- package/README.md +26 -198
- package/dist/api/collectUserEditDiffs.d.ts +9 -0
- package/dist/api/collectUserEditDiffs.js +159 -0
- package/dist/api/downloadFileBatch.d.ts +23 -0
- package/dist/api/downloadFileBatch.js +190 -0
- package/dist/api/saveLocalEdits.d.ts +6 -0
- package/dist/api/saveLocalEdits.js +38 -0
- package/dist/bin/bin-entry.d.ts +1 -0
- package/dist/bin/bin-entry.js +9 -0
- package/dist/bin/bin-main.d.ts +2 -0
- package/dist/bin/bin-main.js +67 -0
- package/dist/cli/base.d.ts +59 -0
- package/dist/cli/base.js +529 -0
- package/dist/cli/commands/download.d.ts +8 -0
- package/dist/cli/commands/download.js +51 -0
- package/dist/cli/commands/enqueue.d.ts +9 -0
- package/dist/cli/commands/enqueue.js +27 -0
- package/dist/cli/commands/setupProject.d.ts +7 -0
- package/dist/cli/commands/setupProject.js +37 -0
- package/dist/cli/commands/stage.d.ts +9 -0
- package/dist/cli/commands/stage.js +59 -0
- package/dist/cli/commands/translate.d.ts +7 -0
- package/dist/cli/commands/translate.js +70 -0
- package/dist/cli/commands/upload.d.ts +13 -0
- package/dist/cli/commands/upload.js +142 -0
- package/dist/cli/commands/utils/validation.d.ts +13 -0
- package/dist/cli/commands/utils/validation.js +38 -0
- package/dist/cli/flags.d.ts +15 -0
- package/dist/cli/flags.js +70 -0
- package/dist/cli/inline.d.ts +17 -0
- package/dist/cli/inline.js +135 -0
- package/dist/cli/next.d.ts +10 -0
- package/dist/cli/next.js +12 -0
- package/dist/cli/node.d.ts +10 -0
- package/dist/cli/node.js +9 -0
- package/dist/cli/react.d.ts +12 -0
- package/dist/cli/react.js +72 -0
- package/dist/config/generateSettings.d.ts +9 -0
- package/dist/config/generateSettings.js +214 -0
- package/dist/config/optionPresets.d.ts +3 -0
- package/dist/config/optionPresets.js +65 -0
- package/dist/config/resolveConfig.d.ts +4 -0
- package/dist/config/resolveConfig.js +33 -0
- package/dist/config/utils.d.ts +2 -0
- package/dist/config/utils.js +4 -0
- package/dist/config/validateSettings.d.ts +3 -0
- package/dist/config/validateSettings.js +32 -0
- package/dist/console/colors.d.ts +6 -0
- package/dist/console/colors.js +19 -0
- package/dist/console/displayTranslateSummary.d.ts +1 -0
- package/dist/console/displayTranslateSummary.js +42 -0
- package/dist/console/formatting.d.ts +1 -0
- package/dist/console/formatting.js +7 -0
- package/dist/console/index.d.ts +34 -0
- package/dist/console/index.js +46 -0
- package/dist/console/logger.d.ts +35 -0
- package/dist/console/logger.js +250 -0
- package/dist/console/logging.d.ts +52 -0
- package/dist/console/logging.js +175 -0
- package/dist/formats/files/aggregateFiles.d.ts +4 -0
- package/dist/formats/files/aggregateFiles.js +156 -0
- package/dist/formats/files/collectFiles.d.ts +6 -0
- package/dist/formats/files/collectFiles.js +49 -0
- package/dist/formats/files/convertToFileTranslationData.d.ts +15 -0
- package/dist/formats/files/convertToFileTranslationData.js +21 -0
- package/dist/formats/files/fileMapping.d.ts +11 -0
- package/dist/formats/files/fileMapping.js +115 -0
- package/dist/formats/files/preprocess/mdx.d.ts +6 -0
- package/dist/formats/files/preprocess/mdx.js +14 -0
- package/dist/formats/files/preprocess/mintlify.d.ts +5 -0
- package/dist/formats/files/preprocess/mintlify.js +15 -0
- package/dist/formats/files/preprocessContent.d.ts +8 -0
- package/dist/formats/files/preprocessContent.js +23 -0
- package/dist/formats/files/save.d.ts +5 -0
- package/dist/formats/files/save.js +17 -0
- package/dist/formats/files/supportedFiles.d.ts +11 -0
- package/dist/formats/files/supportedFiles.js +20 -0
- package/dist/formats/json/extractJson.d.ts +15 -0
- package/dist/formats/json/extractJson.js +101 -0
- package/dist/formats/json/flattenJson.d.ts +14 -0
- package/dist/formats/json/flattenJson.js +64 -0
- package/dist/formats/json/mergeJson.d.ts +13 -0
- package/dist/formats/json/mergeJson.js +367 -0
- package/dist/formats/json/parseJson.d.ts +2 -0
- package/dist/formats/json/parseJson.js +109 -0
- package/dist/formats/json/utils.d.ts +47 -0
- package/dist/formats/json/utils.js +150 -0
- package/dist/formats/utils.d.ts +2 -0
- package/dist/formats/utils.js +24 -0
- package/dist/formats/yaml/mergeYaml.d.ts +5 -0
- package/dist/formats/yaml/mergeYaml.js +61 -0
- package/dist/formats/yaml/parseYaml.d.ts +5 -0
- package/dist/formats/yaml/parseYaml.js +24 -0
- package/dist/formats/yaml/utils.d.ts +2 -0
- package/dist/formats/yaml/utils.js +23 -0
- package/dist/fs/clearLocaleDirs.d.ts +8 -0
- package/dist/fs/clearLocaleDirs.js +126 -0
- package/dist/fs/config/downloadedVersions.d.ts +21 -0
- package/dist/fs/config/downloadedVersions.js +50 -0
- package/dist/fs/config/loadConfig.d.ts +1 -0
- package/dist/fs/config/loadConfig.js +9 -0
- package/dist/fs/config/parseFilesConfig.d.ts +27 -0
- package/dist/fs/config/parseFilesConfig.js +150 -0
- package/dist/fs/config/setupConfig.d.ts +17 -0
- package/dist/fs/config/setupConfig.js +50 -0
- package/dist/fs/config/updateConfig.d.ts +21 -0
- package/dist/fs/config/updateConfig.js +57 -0
- package/dist/fs/config/updateVersions.d.ts +11 -0
- package/dist/fs/config/updateVersions.js +30 -0
- package/dist/fs/copyFile.d.ts +7 -0
- package/dist/fs/copyFile.js +39 -0
- package/dist/fs/createLoadTranslationsFile.d.ts +1 -0
- package/dist/fs/createLoadTranslationsFile.js +49 -0
- package/dist/fs/determineFramework.d.ts +5 -0
- package/dist/fs/determineFramework.js +53 -0
- package/dist/fs/findFilepath.d.ts +36 -0
- package/dist/fs/findFilepath.js +90 -0
- package/dist/fs/index.d.ts +1 -0
- package/dist/fs/index.js +1 -0
- package/dist/fs/loadJSON.d.ts +6 -0
- package/dist/fs/loadJSON.js +17 -0
- package/dist/fs/matchFiles.d.ts +1 -0
- package/dist/fs/matchFiles.js +8 -0
- package/dist/fs/saveJSON.d.ts +1 -0
- package/dist/fs/saveJSON.js +7 -0
- package/dist/fs/utils.d.ts +1 -0
- package/dist/fs/utils.js +16 -0
- package/dist/functions.d.ts +7 -0
- package/dist/functions.js +6 -0
- package/dist/generated/version.d.ts +1 -0
- package/dist/generated/version.js +2 -0
- package/dist/git/branches.d.ts +7 -0
- package/dist/git/branches.js +88 -0
- package/dist/hooks/postProcess.d.ts +4 -0
- package/dist/hooks/postProcess.js +110 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +27 -0
- package/dist/locadex/setupFlow.d.ts +2 -0
- package/dist/locadex/setupFlow.js +9 -0
- package/dist/main.d.ts +2 -0
- package/dist/main.js +10 -0
- package/dist/next/config/parseNextConfig.d.ts +10 -0
- package/dist/next/config/parseNextConfig.js +53 -0
- package/dist/next/jsx/utils.d.ts +7 -0
- package/dist/next/jsx/utils.js +42 -0
- package/dist/next/parse/handleInitGT.d.ts +7 -0
- package/dist/next/parse/handleInitGT.js +157 -0
- package/dist/next/parse/wrapContent.d.ts +12 -0
- package/dist/next/parse/wrapContent.js +164 -0
- package/dist/react/config/createESBuildConfig.d.ts +2 -0
- package/dist/react/config/createESBuildConfig.js +119 -0
- package/dist/react/jsx/evaluateJsx.d.ts +24 -0
- package/dist/react/jsx/evaluateJsx.js +123 -0
- package/dist/react/jsx/utils/buildImportMap.d.ts +9 -0
- package/dist/react/jsx/utils/buildImportMap.js +30 -0
- package/dist/react/jsx/utils/constants.d.ts +15 -0
- package/dist/react/jsx/utils/constants.js +49 -0
- package/dist/react/jsx/utils/getCalleeNameFromExpression.d.ts +9 -0
- package/dist/react/jsx/utils/getCalleeNameFromExpression.js +32 -0
- package/dist/react/jsx/utils/getPathsAndAliases.d.ts +21 -0
- package/dist/react/jsx/utils/getPathsAndAliases.js +91 -0
- package/dist/react/jsx/utils/isNumberLiteral.d.ts +7 -0
- package/dist/react/jsx/utils/isNumberLiteral.js +13 -0
- package/dist/react/jsx/utils/jsxParsing/addGTIdentifierToSyntaxTree.d.ts +9 -0
- package/dist/react/jsx/utils/jsxParsing/addGTIdentifierToSyntaxTree.js +138 -0
- package/dist/react/jsx/utils/jsxParsing/handleChildrenWhitespace.d.ts +6 -0
- package/dist/react/jsx/utils/jsxParsing/handleChildrenWhitespace.js +197 -0
- package/dist/react/jsx/utils/jsxParsing/multiplication/findMultiplicationNode.d.ts +13 -0
- package/dist/react/jsx/utils/jsxParsing/multiplication/findMultiplicationNode.js +42 -0
- package/dist/react/jsx/utils/jsxParsing/multiplication/multiplyJsxTree.d.ts +5 -0
- package/dist/react/jsx/utils/jsxParsing/multiplication/multiplyJsxTree.js +69 -0
- package/dist/react/jsx/utils/jsxParsing/parseJsx.d.ts +33 -0
- package/dist/react/jsx/utils/jsxParsing/parseJsx.js +918 -0
- package/dist/react/jsx/utils/jsxParsing/parseTProps.d.ts +8 -0
- package/dist/react/jsx/utils/jsxParsing/parseTProps.js +65 -0
- package/dist/react/jsx/utils/jsxParsing/removeNullChildrenFields.d.ts +2 -0
- package/dist/react/jsx/utils/jsxParsing/removeNullChildrenFields.js +61 -0
- package/dist/react/jsx/utils/jsxParsing/types.d.ts +48 -0
- package/dist/react/jsx/utils/jsxParsing/types.js +34 -0
- package/dist/react/jsx/utils/mapAttributeName.d.ts +11 -0
- package/dist/react/jsx/utils/mapAttributeName.js +12 -0
- package/dist/react/jsx/utils/parseAst.d.ts +31 -0
- package/dist/react/jsx/utils/parseAst.js +278 -0
- package/dist/react/jsx/utils/parseDeclareStatic.d.ts +15 -0
- package/dist/react/jsx/utils/parseDeclareStatic.js +540 -0
- package/dist/react/jsx/utils/parseString.d.ts +25 -0
- package/dist/react/jsx/utils/parseString.js +540 -0
- package/dist/react/jsx/utils/parseStringFunction.d.ts +30 -0
- package/dist/react/jsx/utils/parseStringFunction.js +348 -0
- package/dist/react/jsx/utils/resolveImportPath.d.ts +11 -0
- package/dist/react/jsx/utils/resolveImportPath.js +111 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/extractStringEntryMetadata.d.ts +29 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/extractStringEntryMetadata.js +86 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleInvalidTranslationCall.d.ts +14 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleInvalidTranslationCall.js +24 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleLiteralTranslationCall.d.ts +19 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleLiteralTranslationCall.js +31 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleStaticTranslationCall.d.ts +22 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/handleStaticTranslationCall.js +51 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/index.d.ts +18 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/index.js +39 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/routeTranslationCall.d.ts +24 -0
- package/dist/react/jsx/utils/stringParsing/processTranslationCall/routeTranslationCall.js +68 -0
- package/dist/react/jsx/utils/stringParsing/types.d.ts +41 -0
- package/dist/react/jsx/utils/stringParsing/types.js +1 -0
- package/dist/react/jsx/utils/types.d.ts +14 -0
- package/dist/react/jsx/utils/types.js +1 -0
- package/dist/react/jsx/utils/validateStringFunction.d.ts +7 -0
- package/dist/react/jsx/utils/validateStringFunction.js +31 -0
- package/dist/react/jsx/wrapJsx.d.ts +51 -0
- package/dist/react/jsx/wrapJsx.js +387 -0
- package/dist/react/parse/addVitePlugin/index.d.ts +22 -0
- package/dist/react/parse/addVitePlugin/index.js +41 -0
- package/dist/react/parse/addVitePlugin/installCompiler.d.ts +8 -0
- package/dist/react/parse/addVitePlugin/installCompiler.js +22 -0
- package/dist/react/parse/addVitePlugin/updateViteConfig.d.ts +19 -0
- package/dist/react/parse/addVitePlugin/updateViteConfig.js +120 -0
- package/dist/react/parse/addVitePlugin/utils/addCompilerImport.d.ts +9 -0
- package/dist/react/parse/addVitePlugin/utils/addCompilerImport.js +34 -0
- package/dist/react/parse/addVitePlugin/utils/addPluginInvocation.d.ts +11 -0
- package/dist/react/parse/addVitePlugin/utils/addPluginInvocation.js +48 -0
- package/dist/react/parse/addVitePlugin/utils/checkCompilerImport.d.ts +15 -0
- package/dist/react/parse/addVitePlugin/utils/checkCompilerImport.js +113 -0
- package/dist/react/parse/addVitePlugin/utils/checkPluginInvocation.d.ts +12 -0
- package/dist/react/parse/addVitePlugin/utils/checkPluginInvocation.js +32 -0
- package/dist/react/parse/createDictionaryUpdates.d.ts +3 -0
- package/dist/react/parse/createDictionaryUpdates.js +187 -0
- package/dist/react/parse/createInlineUpdates.d.ts +13 -0
- package/dist/react/parse/createInlineUpdates.js +161 -0
- package/dist/react/parse/wrapContent.d.ts +12 -0
- package/dist/react/parse/wrapContent.js +162 -0
- package/dist/react/utils/flattenDictionary.d.ts +20 -0
- package/dist/react/utils/flattenDictionary.js +75 -0
- package/dist/react/utils/getEntryAndMetadata.d.ts +5 -0
- package/dist/react/utils/getEntryAndMetadata.js +11 -0
- package/dist/react/utils/getVariableName.d.ts +25 -0
- package/dist/react/utils/getVariableName.js +37 -0
- package/dist/setup/agentInstructions.d.ts +24 -0
- package/dist/setup/agentInstructions.js +138 -0
- package/dist/setup/detectFramework.d.ts +31 -0
- package/dist/setup/detectFramework.js +106 -0
- package/dist/setup/frameworkUtils.d.ts +3 -0
- package/dist/setup/frameworkUtils.js +30 -0
- package/dist/setup/instructions/base.md +29 -0
- package/dist/setup/instructions/gt-next.md +107 -0
- package/dist/setup/instructions/gt-react.md +98 -0
- package/dist/setup/userInput.d.ts +4 -0
- package/dist/setup/userInput.js +32 -0
- package/dist/setup/wizard.d.ts +3 -0
- package/dist/setup/wizard.js +147 -0
- package/dist/state/recentDownloads.d.ts +12 -0
- package/dist/state/recentDownloads.js +18 -0
- package/dist/state/translateWarnings.d.ts +10 -0
- package/dist/state/translateWarnings.js +13 -0
- package/dist/translation/parse.d.ts +17 -0
- package/dist/translation/parse.js +77 -0
- package/dist/translation/stage.d.ts +3 -0
- package/dist/translation/stage.js +44 -0
- package/dist/translation/validate.d.ts +14 -0
- package/dist/translation/validate.js +100 -0
- package/dist/types/branch.d.ts +14 -0
- package/dist/types/branch.js +1 -0
- package/dist/types/data/json.d.ts +6 -0
- package/dist/types/data/json.js +1 -0
- package/dist/types/data.d.ts +37 -0
- package/dist/types/data.js +1 -0
- package/dist/types/files.d.ts +8 -0
- package/dist/types/files.js +1 -0
- package/dist/types/index.d.ts +243 -0
- package/dist/types/index.js +1 -0
- package/dist/types/libraries.d.ts +31 -0
- package/dist/types/libraries.js +72 -0
- package/dist/types/parsing.d.ts +3 -0
- package/dist/types/parsing.js +1 -0
- package/dist/utils/addExplicitAnchorIds.d.ts +24 -0
- package/dist/utils/addExplicitAnchorIds.js +416 -0
- package/dist/utils/constants.d.ts +5 -0
- package/dist/utils/constants.js +6 -0
- package/dist/utils/credentials.d.ts +12 -0
- package/dist/utils/credentials.js +120 -0
- package/dist/utils/flattenJsonFiles.d.ts +2 -0
- package/dist/utils/flattenJsonFiles.js +36 -0
- package/dist/utils/gitDiff.d.ts +8 -0
- package/dist/utils/gitDiff.js +34 -0
- package/dist/utils/gt.d.ts +2 -0
- package/dist/utils/gt.js +2 -0
- package/dist/utils/hash.d.ts +6 -0
- package/dist/utils/hash.js +11 -0
- package/dist/utils/headers.d.ts +1 -0
- package/dist/utils/headers.js +14 -0
- package/dist/utils/installPackage.d.ts +3 -0
- package/dist/utils/installPackage.js +77 -0
- package/dist/utils/localizeRelativeAssets.d.ts +8 -0
- package/dist/utils/localizeRelativeAssets.js +166 -0
- package/dist/utils/localizeStaticImports.d.ts +15 -0
- package/dist/utils/localizeStaticImports.js +397 -0
- package/dist/utils/localizeStaticUrls.d.ts +19 -0
- package/dist/utils/localizeStaticUrls.js +450 -0
- package/dist/utils/mintlifyTitleFallback.d.ts +6 -0
- package/dist/utils/mintlifyTitleFallback.js +80 -0
- package/dist/utils/packageInfo.d.ts +3 -0
- package/dist/utils/packageInfo.js +17 -0
- package/dist/utils/packageJson.d.ts +6 -0
- package/dist/utils/packageJson.js +68 -0
- package/dist/utils/packageManager.d.ts +28 -0
- package/dist/utils/packageManager.js +269 -0
- package/dist/utils/parse/needsCJS.d.ts +20 -0
- package/dist/utils/parse/needsCJS.js +72 -0
- package/dist/utils/persistPostprocessHashes.d.ts +12 -0
- package/dist/utils/persistPostprocessHashes.js +39 -0
- package/dist/utils/processAnchorIds.d.ts +6 -0
- package/dist/utils/processAnchorIds.js +56 -0
- package/dist/utils/processOpenApi.d.ts +8 -0
- package/dist/utils/processOpenApi.js +651 -0
- package/dist/utils/sanitizeFileContent.d.ts +6 -0
- package/dist/utils/sanitizeFileContent.js +29 -0
- package/dist/utils/sharedStaticAssets.d.ts +9 -0
- package/dist/utils/sharedStaticAssets.js +384 -0
- package/dist/utils/validateMdx.d.ts +10 -0
- package/dist/utils/validateMdx.js +25 -0
- package/dist/utils/wrapPlainUrls.d.ts +8 -0
- package/dist/utils/wrapPlainUrls.js +72 -0
- package/dist/workflows/download.d.ts +32 -0
- package/dist/workflows/download.js +131 -0
- package/dist/workflows/enqueue.d.ts +17 -0
- package/dist/workflows/enqueue.js +59 -0
- package/dist/workflows/setupProject.d.ts +13 -0
- package/dist/workflows/setupProject.js +48 -0
- package/dist/workflows/stage.d.ts +18 -0
- package/dist/workflows/stage.js +59 -0
- package/dist/workflows/steps/BranchStep.d.ts +13 -0
- package/dist/workflows/steps/BranchStep.js +161 -0
- package/dist/workflows/steps/DownloadStep.d.ts +19 -0
- package/dist/workflows/steps/DownloadStep.js +131 -0
- package/dist/workflows/steps/EnqueueStep.d.ts +15 -0
- package/dist/workflows/steps/EnqueueStep.js +33 -0
- package/dist/workflows/steps/PollJobsStep.d.ts +31 -0
- package/dist/workflows/steps/PollJobsStep.js +288 -0
- package/dist/workflows/steps/SetupStep.d.ts +16 -0
- package/dist/workflows/steps/SetupStep.js +72 -0
- package/dist/workflows/steps/UploadSourcesStep.d.ts +27 -0
- package/dist/workflows/steps/UploadSourcesStep.js +131 -0
- package/dist/workflows/steps/UploadTranslationsStep.d.ts +22 -0
- package/dist/workflows/steps/UploadTranslationsStep.js +71 -0
- package/dist/workflows/steps/UserEditDiffsStep.d.ts +11 -0
- package/dist/workflows/steps/UserEditDiffsStep.js +30 -0
- package/dist/workflows/steps/WorkflowStep.d.ts +4 -0
- package/dist/workflows/steps/WorkflowStep.js +2 -0
- package/dist/workflows/upload.d.ts +15 -0
- package/dist/workflows/upload.js +47 -0
- package/package.json +149 -112
- package/.dont-break +0 -6
- package/.jshintrc +0 -76
- package/.npmignore +0 -9
- package/.travis.yml +0 -21
- package/Gruntfile.js +0 -65
- package/History.md +0 -90
- package/MIT-License.txt +0 -21
- package/bin/gt.js +0 -58
- package/complexity.json +0 -17
- package/doc/RequireJsExample.md +0 -10
- package/examples/all.js +0 -72
- package/examples/altAsserrionSyntax/tests.js +0 -32
- package/examples/amd/bar.js +0 -4
- package/examples/amd/foo.js +0 -15
- package/examples/amd/fooTests.js +0 -8
- package/examples/arrays/test.js +0 -15
- package/examples/assert/test-assert-object.js +0 -15
- package/examples/assert/test-assert-require.js +0 -17
- package/examples/async/asyncAll.js +0 -37
- package/examples/async/asyncSetup.js +0 -29
- package/examples/async/asyncSetupOnce.js +0 -25
- package/examples/async/asyncTeardown.js +0 -27
- package/examples/async/stopStart.js +0 -22
- package/examples/async/test.js +0 -43
- package/examples/async/timeoutTests.js +0 -19
- package/examples/basic/code.js +0 -50
- package/examples/basic/code2.js +0 -9
- package/examples/basic/default.js +0 -26
- package/examples/basic/definedUndefined.js +0 -28
- package/examples/basic/empty.js +0 -24
- package/examples/basic/exceptionTests.js +0 -55
- package/examples/basic/fullMessage.js +0 -28
- package/examples/basic/functions.js +0 -18
- package/examples/basic/incomplete.js +0 -16
- package/examples/basic/null.js +0 -17
- package/examples/basic/optional.js +0 -45
- package/examples/basic/tests.js +0 -147
- package/examples/bdd/spec.js +0 -67
- package/examples/browser/code_coverage_report.json +0 -1
- package/examples/browser/index.html +0 -50
- package/examples/browser/packages.js +0 -12
- package/examples/browser/packagesDefault.js +0 -12
- package/examples/browser/qunit/qunit-1.10.0.css +0 -235
- package/examples/browser/qunit/qunit-1.10.0.js +0 -1977
- package/examples/browser/runTestsWithCoverage.bat +0 -19
- package/examples/browser/runner.js +0 -178
- package/examples/browser/src/Foo.js +0 -14
- package/examples/browser/srcInstrumented/Foo.js +0 -6
- package/examples/browser/test/FooTest.js +0 -31
- package/examples/browser/testDojo.js +0 -63
- package/examples/browser/testInstrumented/FooTest.js +0 -6
- package/examples/coffee/coffeeTestsCoffee/foo.coffee +0 -4
- package/examples/coffee/coffeeTestsCoffee/tests.coffee +0 -7
- package/examples/coffee/coffeeTestsJs/foo.js +0 -9
- package/examples/coffee/coffeeTestsJs/tests.coffee +0 -9
- package/examples/coffee/jsTestsCoffee/foo.coffee +0 -4
- package/examples/coffee/jsTestsCoffee/tests.js +0 -8
- package/examples/coverage.png +0 -0
- package/examples/crash/foo.js +0 -8
- package/examples/crashOnLoading/foo.js +0 -3
- package/examples/crashStackSize/foo.js +0 -8
- package/examples/crashStackSize/test.js +0 -7
- package/examples/doh/foo.js +0 -15
- package/examples/doh/fooTests.js +0 -28
- package/examples/dohDefine/foo.js +0 -14
- package/examples/dohDefine/fooTests.js +0 -24
- package/examples/dojo/src/Foo.js +0 -12
- package/examples/dojo/test/FooTest.js +0 -9
- package/examples/dojo/testDojo.js +0 -69
- package/examples/equiv/equiv.js +0 -22
- package/examples/example.png +0 -0
- package/examples/exec/foo.js +0 -5
- package/examples/exec/tests.js +0 -50
- package/examples/expect/test.js +0 -53
- package/examples/extend/extend-through-api.js +0 -40
- package/examples/extend/test.js +0 -18
- package/examples/faster/fibonacci.js +0 -18
- package/examples/faster/test.js +0 -89
- package/examples/fluent/foo.js +0 -38
- package/examples/funcAndArity/test.js +0 -15
- package/examples/gtAndQUnit/gtTests.js +0 -6
- package/examples/gtAndQUnit/qunitTests.js +0 -5
- package/examples/jsUnity/foo.js +0 -10
- package/examples/jsUnity/fooTests.js +0 -19
- package/examples/lodash/totalLength.js +0 -19
- package/examples/longStrings/test.js +0 -27
- package/examples/moduleSetupTeardown/test.js +0 -115
- package/examples/namedTest/foo.js +0 -9
- package/examples/overrideGt/test.js +0 -11
- package/examples/quickFail/test.js +0 -22
- package/examples/qunit/foo.js +0 -13
- package/examples/reporting/tests.coffee +0 -9
- package/examples/requirejs/lib/Foo.js +0 -11
- package/examples/requirejs/lib/Rectangle.js +0 -13
- package/examples/requirejs/runTests.js +0 -5
- package/examples/requirejs/test/RectangleTest.js +0 -22
- package/examples/silent/foo.js +0 -7
- package/examples/silent/fooTest.js +0 -18
- package/examples/skipTest/tests.js +0 -15
- package/examples/testsFromOtherTests/parentTests.js +0 -7
- package/examples/testsFromOtherTests/tests.js +0 -5
- package/examples/throws/test.js +0 -17
- package/examples/use-gt-as-module/fooTest.js +0 -8
- package/examples/use-gt-as-module/test-code.js +0 -7
- package/gt.js +0 -11
- package/lib/coverage.js +0 -234
- package/src/JUnitReporter.js +0 -30
- package/src/QUnitBrowserAdapter.js +0 -15
- package/src/Reporter.js +0 -127
- package/src/TestRunInfo.js +0 -25
- package/src/TestRunner.js +0 -223
- package/src/UnitTest/CollectionMethods.js +0 -97
- package/src/UnitTest/ModuleTests.js +0 -104
- package/src/UnitTest/Test.js +0 -85
- package/src/UnitTest/TestAsync.js +0 -78
- package/src/UnitTest/TestBaseInfo.js +0 -21
- package/src/UnitTest/TestCollection.js +0 -206
- package/src/UnitTest/TestInfo.js +0 -30
- package/src/UnitTest/TestReport.js +0 -27
- package/src/assertions/PrimaryAssertions.js +0 -163
- package/src/assertions/SecondaryAssertions.js +0 -262
- package/src/assertions/TertiaryAssertions.js +0 -99
- package/src/bddInterface.js +0 -39
- package/src/covered.js +0 -156
- package/src/dohAdapter.js +0 -79
- package/src/dohInterface.js +0 -20
- package/src/equiv.js +0 -11
- package/src/jsunityAdapter.js +0 -66
- package/src/jsunityInterface.js +0 -13
- package/src/options.js +0 -116
- package/src/shiv.js +0 -16
- package/src/sure.js +0 -226
- package/src/test/ConsoleHider.js +0 -26
- package/src/test/JUnitReporter.js +0 -12
- package/src/test/ModuleTests.js +0 -37
- package/src/test/Test.js +0 -18
- package/src/test/TestCollection.js +0 -21
- package/src/test/TestRunInfo.js +0 -15
- package/src/test/TestRunner.js +0 -9
- package/src/test/utils.js +0 -43
- package/src/utils/ConsoleHider.js +0 -27
- package/src/utils/WatchFiles.js +0 -13
- package/src/utils/discoverFiles.js +0 -18
- package/src/utils/joinArguments.js +0 -13
- package/src/utils/not.js +0 -14
- package/src/utils/pluckFunction.js +0 -15
- package/src/utils/test/joinArgumentsTest.js +0 -24
- package/src/utils/test/not.js +0 -70
- package/src/utils/test/pluckFunctionLoDashTest.js +0 -51
- package/src/utils/test/pluckFunctionTest.js +0 -41
- package/src/utils/test/pluckObjects.js +0 -20
- package/src/utils/utils.js +0 -146
- package/tests/all.js +0 -24
- package/tests/large/bddTest.js +0 -9
- package/tests/large/expectedCrash.js +0 -3
- package/tests/large/expectedCrashTest.js +0 -9
- package/tests/large/filterCLI.js +0 -10
- package/tests/large/filterCLITest.js +0 -18
- package/tests/large/loadingCrash.js +0 -1
- package/tests/large/loadingCrashTest.js +0 -9
- package/tests/large/skip.js +0 -11
- package/tests/large/skipTest.js +0 -9
- package/tests/large/twoFailing.js +0 -9
- package/tests/large/twoFailingTest.js +0 -9
- package/tests/mocha/.npmignore +0 -1
- package/tests/mocha/basic.js +0 -12
- package/tests/mocha/gt-as-module.js +0 -65
- package/tests/mocha/test-collection.js +0 -67
- package/tests/small/errorInAsync.js +0 -6
- package/tests/small/errorInAsyncTest.js +0 -14
- package/tests/small/oneFails.js +0 -7
- package/tests/small/oneFailsTest.js +0 -18
- package/tests/small/pluckObjects.js +0 -20
- package/tests/small/pluckTest.js +0 -51
- package/tests/small/setupException.js +0 -8
- package/tests/small/setupExceptionTest.js +0 -9
- package/tests/small/teardownException.js +0 -8
- package/tests/small/teardownExceptionTest.js +0 -9
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
gt.module('make sure all arguments are reported when ok assertion fails');
|
|
2
|
-
|
|
3
|
-
gt.test('FAIL: 2 arguments', function () {
|
|
4
|
-
gt.ok(true, 'everything is ok');
|
|
5
|
-
gt.ok(false, 'this is single message');
|
|
6
|
-
gt.ok(false, 'first of two', 'second of two');
|
|
7
|
-
gt.ok(false); // no message on purpose
|
|
8
|
-
});
|
|
9
|
-
|
|
10
|
-
gt.test('FAIL: equal with arguments', function () {
|
|
11
|
-
gt.equal(1, 2);
|
|
12
|
-
gt.equal(1, 2, 'single argument');
|
|
13
|
-
gt.equal(1, 2, 'single argument of two', 'second argument');
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
gt.test('FAIL: func with arguments', function () {
|
|
17
|
-
var foo = 'not a function';
|
|
18
|
-
gt.func(foo);
|
|
19
|
-
gt.func(foo, 'single argument');
|
|
20
|
-
gt.func(foo, 'single argument of two', 'second argument');
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
gt.test('FAIL: fn with arguments', function () {
|
|
24
|
-
var foo = 'not a function';
|
|
25
|
-
gt.fn(foo);
|
|
26
|
-
gt.fn(foo, 'single argument');
|
|
27
|
-
gt.fn(foo, 'single argument of two', 'second argument');
|
|
28
|
-
});
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
gt.module('functions');
|
|
2
|
-
|
|
3
|
-
gt.test('func', function () {
|
|
4
|
-
function foo() {};
|
|
5
|
-
gt.ok(foo, 'foo is ok');
|
|
6
|
-
gt.func(foo, 'foo is a function');
|
|
7
|
-
gt.arity(foo, 0, 'foo does not take any arguments');
|
|
8
|
-
});
|
|
9
|
-
|
|
10
|
-
gt.test('arity + expect number', function () {
|
|
11
|
-
function foo() {};
|
|
12
|
-
gt.expect(1);
|
|
13
|
-
gt.arity(foo, 0, 'foo without arguments');
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
gt.test('arity 1', function () {
|
|
17
|
-
gt.arity(function (foo) {}, 1, 'needs 1 argument');
|
|
18
|
-
});
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
gt.module('incomplete expect');
|
|
2
|
-
|
|
3
|
-
gt.test("INCOMPLETE: expect 4 get 0", function () {
|
|
4
|
-
gt.expect(4);
|
|
5
|
-
});
|
|
6
|
-
|
|
7
|
-
gt.test("INCOMPLETE: expect 4 get 1", function () {
|
|
8
|
-
gt.expect(4);
|
|
9
|
-
gt.ok(true, "single existing assertion out of 4");
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
gt.test("INCOMPLETE: expect 4 get 2", function () {
|
|
13
|
-
gt.expect(4);
|
|
14
|
-
gt.ok(true, "good assertion out of 4");
|
|
15
|
-
gt.ok(false, "bad assertion out of 4");
|
|
16
|
-
});
|
package/examples/basic/null.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
gt.module('null tests');
|
|
2
|
-
|
|
3
|
-
gt.test('gt.null', function () {
|
|
4
|
-
gt.func(gt.null, 'gt.null is a function');
|
|
5
|
-
|
|
6
|
-
var foo = null;
|
|
7
|
-
gt.defined(foo, 'foo is defined');
|
|
8
|
-
gt.null(foo, 'foo is null');
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
gt.test('FAIL: not null', function () {
|
|
12
|
-
gt.null('foo', 'foo is not null');
|
|
13
|
-
});
|
|
14
|
-
|
|
15
|
-
gt.test('CRASH: crash on purpose', function () {
|
|
16
|
-
throw new Error('a problem');
|
|
17
|
-
});
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
// var safeFoo = optional(foo);
|
|
2
|
-
// safeFoo(condition, arg1, arg2);
|
|
3
|
-
function optional(fn) {
|
|
4
|
-
return function(condition) {
|
|
5
|
-
if (condition) {
|
|
6
|
-
return fn.apply(this, [].slice.call(arguments, 1));
|
|
7
|
-
}
|
|
8
|
-
};
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
gt.module('optional');
|
|
12
|
-
|
|
13
|
-
var foo = function() { return 'foo'; };
|
|
14
|
-
var echo = function(value) { return value; }
|
|
15
|
-
|
|
16
|
-
gt.test(function basic() {
|
|
17
|
-
gt.func(foo, 'foo is a function');
|
|
18
|
-
gt.equal(foo(), 'foo', 'foo returns correct value');
|
|
19
|
-
|
|
20
|
-
var safeFoo = optional(foo);
|
|
21
|
-
gt.func(safeFoo, 'safe foo is a function');
|
|
22
|
-
gt.equal(safeFoo(true), 'foo', 'called foo because condition is true');
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
gt.test(function falseCondition() {
|
|
26
|
-
var safeFoo = optional(foo);
|
|
27
|
-
gt.func(safeFoo, 'safe foo is a function');
|
|
28
|
-
gt.undefined(safeFoo(false), 'not called foo');
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
gt.test(function variableCondition() {
|
|
32
|
-
var safeFoo = optional(foo);
|
|
33
|
-
gt.func(safeFoo, 'safe foo is a function');
|
|
34
|
-
var condition = false;
|
|
35
|
-
gt.undefined(safeFoo(condition), 'not called foo');
|
|
36
|
-
condition = true;
|
|
37
|
-
gt.equal(safeFoo(condition), 'foo', 'called foo');
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
gt.test(function passingArguments() {
|
|
41
|
-
var safeEcho = optional(echo);
|
|
42
|
-
gt.equal(safeEcho(true, 'f'), 'f', 'echoed f');
|
|
43
|
-
gt.equal(safeEcho(true, 2), 2, 'echoed 2');
|
|
44
|
-
gt.undefined(safeEcho(false, 4), 'nothing echoed');
|
|
45
|
-
});
|
package/examples/basic/tests.js
DELETED
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
console.assert(typeof gt === "object", "gt is undefined");
|
|
2
|
-
console.assert(typeof gt.module === "function", "module is undefined");
|
|
3
|
-
console.assert(typeof gt.test === "function", "test is undefined");
|
|
4
|
-
console.assert(typeof gt.equal === "function", "equal is undefined");
|
|
5
|
-
console.assert(typeof gt.ok === "function", "ok is undefined");
|
|
6
|
-
console.assert(typeof gt.expect === "function", "expect is undefined");
|
|
7
|
-
|
|
8
|
-
var path = require('path');
|
|
9
|
-
|
|
10
|
-
// load code to be tested
|
|
11
|
-
var code = require("./code");
|
|
12
|
-
console.assert(typeof code.add === "function", "add is not defined");
|
|
13
|
-
|
|
14
|
-
var add = code.add,
|
|
15
|
-
getLines = code.getLines,
|
|
16
|
-
centerMessage = code.centerMessage;
|
|
17
|
-
|
|
18
|
-
gt.module('new assertions');
|
|
19
|
-
|
|
20
|
-
gt.test(function namedTestFunction () {
|
|
21
|
-
gt.expect(0);
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
gt.test('gt.func test', function () {
|
|
25
|
-
gt.func(function () {}, 'empty function');
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
gt.test('arrays', function () {
|
|
29
|
-
gt.aequal([1, 2, 3], [1, 2, 3], 'arrays should be equal');
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
gt.test('array check', function () {
|
|
33
|
-
gt.array([], 'empty array is ok');
|
|
34
|
-
gt.array([1, 3, 3], 'non empty array is ok');
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
gt.test('FAIL: object is not an array', function () {
|
|
38
|
-
gt.array({}, 'object is not an array');
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
gt.test('true number', function () {
|
|
42
|
-
gt.number(4, '4 is a number');
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
gt.test('FAIL: string is NOT a number', function () {
|
|
46
|
-
gt.number('4', '"4" is not a number');
|
|
47
|
-
});
|
|
48
|
-
|
|
49
|
-
gt.test('true string', function () {
|
|
50
|
-
gt.string('foo', 'foo is a string');
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
gt.test('FAIL: string is not a number', function () {
|
|
54
|
-
gt.string(99, '99 is not a string');
|
|
55
|
-
});
|
|
56
|
-
|
|
57
|
-
gt.test('FAIL: string is not a number', function () {
|
|
58
|
-
gt.number('99', '"99" is not a number');
|
|
59
|
-
});
|
|
60
|
-
|
|
61
|
-
gt.module('few basic tests');
|
|
62
|
-
|
|
63
|
-
gt.test("comparing with undefined", function () {
|
|
64
|
-
gt.expect(1);
|
|
65
|
-
if ("undefined" === typeof ffff) {
|
|
66
|
-
gt.ok(true, "ffff is undefined");
|
|
67
|
-
} else {
|
|
68
|
-
gt.ok(false, "ffff is defined!");
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
gt.test("FAIL: several failed oks", function() {
|
|
73
|
-
gt.ok(false, "ok 1 failed");
|
|
74
|
-
gt.ok(false, "ok 2 failed");
|
|
75
|
-
gt.ok(false, "ok 3 failed");
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
gt.test("CRASH: crash after assertions", function () {
|
|
79
|
-
var obj = {};
|
|
80
|
-
gt.equal(typeof obj, "object", "obj exists");
|
|
81
|
-
// fail assertion on purpose
|
|
82
|
-
gt.equal(typeof obj.foo, "string", "obj.foo is a string");
|
|
83
|
-
// crash on purpose
|
|
84
|
-
gt.equal(typeof bar.foo, "string", "bar is undefined, crash!");
|
|
85
|
-
gt.ok(false, "never reach here");
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
gt.test("CRASH: just crash", function () {
|
|
89
|
-
// crash on purpose
|
|
90
|
-
gt.equal(typeof bar.foo, "string", "bar is undefined, crash!");
|
|
91
|
-
gt.ok(false, "never reach here");
|
|
92
|
-
});
|
|
93
|
-
|
|
94
|
-
gt.test("CRASH: crash inside ok condition", function () {
|
|
95
|
-
gt.ok(typeof obj.foo === "something", "condition on non existent object");
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
gt.test("code functions exist", function () {
|
|
99
|
-
gt.equal(typeof code.getLines, "function", "code.getLines is not a function");
|
|
100
|
-
gt.equal(typeof getLines, "function", "getLines is not a function");
|
|
101
|
-
gt.equal(typeof add, "function", "add is not a function");
|
|
102
|
-
gt.equal(typeof centerMessage, "function", "centerMessage is not a function");
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
gt.module("code functions");
|
|
106
|
-
|
|
107
|
-
gt.test("get N '='", function () {
|
|
108
|
-
gt.ok(typeof getLines === "function", "getLines is a function");
|
|
109
|
-
gt.equal(getLines(0), "", "0 character");
|
|
110
|
-
gt.equal(getLines(1), "=", "1 character");
|
|
111
|
-
gt.equal(getLines(3), "===", "3 character");
|
|
112
|
-
gt.equal(getLines(6), "======", "6 character");
|
|
113
|
-
});
|
|
114
|
-
|
|
115
|
-
gt.test("center message", function () {
|
|
116
|
-
gt.equal(centerMessage(1, "a"), " a ", "single character");
|
|
117
|
-
gt.equal(centerMessage(2, "a"), " a ", "single character with space");
|
|
118
|
-
gt.equal(centerMessage(3, "a"), " a ", "3 a");
|
|
119
|
-
gt.equal(centerMessage(4, "a"), " a =", "4 a");
|
|
120
|
-
gt.equal(centerMessage(5, "a"), "= a =", "5 a");
|
|
121
|
-
gt.equal(centerMessage(5, "aa"), " aa =", "5 aa");
|
|
122
|
-
gt.equal(centerMessage(5, "a"), "= a =", "5 a");
|
|
123
|
-
|
|
124
|
-
gt.equal(centerMessage(1, ""), "=", "1 empty");
|
|
125
|
-
gt.equal(centerMessage(2, ""), "==", "2 empty");
|
|
126
|
-
gt.equal(centerMessage(5, ""), "=====", "5 empty");
|
|
127
|
-
});
|
|
128
|
-
|
|
129
|
-
gt.test("basic +", function () {
|
|
130
|
-
gt.equal(add(1, 2), 3, "1 + 2 = 3");
|
|
131
|
-
gt.equal(add(2, 1), 3, "2 + 1 = 3");
|
|
132
|
-
gt.equal(add(-1, 1), 0, "-1 + 1 = 0");
|
|
133
|
-
});
|
|
134
|
-
|
|
135
|
-
gt.test("FAIL: add is a function", function () {
|
|
136
|
-
gt.ok(typeof add === "function", "add exists and is a function");
|
|
137
|
-
// now fail!
|
|
138
|
-
gt.ok(false, "ok with false condition on purpose");
|
|
139
|
-
});
|
|
140
|
-
|
|
141
|
-
gt.test("FAIL: fail +", function () {
|
|
142
|
-
gt.equal(add(10, 0), 10, "10 + 0 = 10");
|
|
143
|
-
// now fail!
|
|
144
|
-
gt.equal(add(0, 0), 3, "0 + 0 = 3 should fail.");
|
|
145
|
-
});
|
|
146
|
-
|
|
147
|
-
gt.module('module with no tests');
|
package/examples/bdd/spec.js
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
// BDD interface for GT example
|
|
2
|
-
// you can confirm this test is typical BDD
|
|
3
|
-
// mocha -R spec spec.js
|
|
4
|
-
var la = require('lazy-ass');
|
|
5
|
-
|
|
6
|
-
it('runs a stand alone test', function () {
|
|
7
|
-
console.assert('foo' === 'foo');
|
|
8
|
-
});
|
|
9
|
-
|
|
10
|
-
describe('addition', function () {
|
|
11
|
-
it('adds integers', function () {
|
|
12
|
-
console.assert(2 + 2 === 4);
|
|
13
|
-
});
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
var ranAfterEach = false;
|
|
17
|
-
|
|
18
|
-
describe('before and after', function () {
|
|
19
|
-
var setup = 0;
|
|
20
|
-
|
|
21
|
-
beforeEach(function () {
|
|
22
|
-
setup = 1;
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
beforeEach(function () {
|
|
26
|
-
setup = 2;
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
afterEach(function () {
|
|
30
|
-
ranAfterEach = true;
|
|
31
|
-
});
|
|
32
|
-
|
|
33
|
-
it('ran before each callback', function () {
|
|
34
|
-
console.assert(setup === 2, 'both before each blocks ran ' + setup);
|
|
35
|
-
setup = 0;
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
it('ran them again', function () {
|
|
39
|
-
console.assert(setup === 2, 'both before each blocks ran ' + setup);
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
it('ran after each', function () {
|
|
45
|
-
console.assert(ranAfterEach, 'ran after each');
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
describe('setting done', function () {
|
|
49
|
-
var done = false;
|
|
50
|
-
function doIt() { done = true; }
|
|
51
|
-
|
|
52
|
-
beforeEach(function () {
|
|
53
|
-
done = false;
|
|
54
|
-
});
|
|
55
|
-
|
|
56
|
-
it('first spec', function () {
|
|
57
|
-
la(!done, '!done initially');
|
|
58
|
-
doIt();
|
|
59
|
-
la(done);
|
|
60
|
-
});
|
|
61
|
-
|
|
62
|
-
it('second spec', function () {
|
|
63
|
-
la(!done, '!done initially');
|
|
64
|
-
doIt();
|
|
65
|
-
la(done);
|
|
66
|
-
});
|
|
67
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"C:\\git\\gt\\examples\\browser\\src\\Foo.js":{"b":{"1":[0,1]},"branchMap":{"1":{"line":5,"locations":[{"end":{"column":2,"line":5},"start":{"column":2,"line":5}},{"end":{"column":2,"line":5},"start":{"column":2,"line":5}}],"type":"if"}},"f":{"1":1,"2":1,"3":0},"fnMap":{"1":{"line":3,"loc":{"end":{"column":23,"line":3},"start":{"column":11,"line":3}},"name":"(anonymous_1)"},"2":{"line":4,"loc":{"end":{"column":19,"line":4},"start":{"column":8,"line":4}},"name":"(anonymous_2)"},"3":{"line":12,"loc":{"end":{"column":21,"line":12},"start":{"column":0,"line":12}},"name":"notCalled"}},"path":"C:\\git\\gt\\examples\\browser\\src\\Foo.js","s":{"1":1,"2":1,"3":1,"4":1,"5":0,"6":1,"7":1,"8":0},"statementMap":{"1":{"end":{"column":28,"line":1},"start":{"column":0,"line":1}},"2":{"end":{"column":3,"line":10},"start":{"column":0,"line":3}},"3":{"end":{"column":3,"line":9},"start":{"column":1,"line":4}},"4":{"end":{"column":3,"line":7},"start":{"column":2,"line":5}},"5":{"end":{"column":16,"line":6},"start":{"column":3,"line":6}},"6":{"end":{"column":15,"line":8},"start":{"column":2,"line":8}},"7":{"end":{"column":1,"line":14},"start":{"column":0,"line":12}},"8":{"end":{"column":42,"line":13},"start":{"column":1,"line":13}}}},"C:\\git\\gt\\examples\\browser\\test\\FooTest.js":{"b":{},"branchMap":{},"f":{"1":1,"2":1,"3":1},"fnMap":{"1":{"line":1,"loc":{"end":{"column":36,"line":1},"start":{"column":21,"line":1}},"name":"(anonymous_1)"},"2":{"line":5,"loc":{"end":{"column":35,"line":5},"start":{"column":23,"line":5}},"name":"(anonymous_2)"},"3":{"line":16,"loc":{"end":{"column":39,"line":16},"start":{"column":27,"line":16}},"name":"(anonymous_3)"}},"path":"C:\\git\\gt\\examples\\browser\\test\\FooTest.js","s":{"1":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1},"statementMap":{"1":{"end":{"column":3,"line":31},"start":{"column":0,"line":1}},"10":{"end":{"column":72,"line":19},"start":{"column":3,"line":19}},"11":{"end":{"column":43,"line":20},"start":{"column":3,"line":20}},"12":{"end":{"column":39,"line":21},"start":{"column":3,"line":21}},"13":{"end":{"column":39,"line":22},"start":{"column":3,"line":22}},"14":{"end":{"column":68,"line":24},"start":{"column":3,"line":24}},"15":{"end":{"column":37,"line":25},"start":{"column":3,"line":25}},"16":{"end":{"column":50,"line":27},"start":{"column":3,"line":27}},"17":{"end":{"column":61,"line":28},"start":{"column":3,"line":28}},"18":{"end":{"column":23,"line":29},"start":{"column":3,"line":29}},"2":{"end":{"column":34,"line":2},"start":{"column":1,"line":2}},"3":{"end":{"column":25,"line":3},"start":{"column":2,"line":3}},"4":{"end":{"column":5,"line":8},"start":{"column":2,"line":5}},"5":{"end":{"column":56,"line":6},"start":{"column":2,"line":6}},"6":{"end":{"column":53,"line":7},"start":{"column":4,"line":7}},"7":{"end":{"column":5,"line":30},"start":{"column":2,"line":16}},"8":{"end":{"column":58,"line":17},"start":{"column":3,"line":17}},"9":{"end":{"column":49,"line":18},"start":{"column":3,"line":18}}}}}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<title>Unit testing from browser</title>
|
|
6
|
-
<link rel="stylesheet" href="qunit/qunit-1.10.0.css">
|
|
7
|
-
</head>
|
|
8
|
-
<body>
|
|
9
|
-
|
|
10
|
-
To cover unit tests running in the browser:
|
|
11
|
-
<ol>
|
|
12
|
-
<li>instrument source folder using istanbul
|
|
13
|
-
<pre>istanbul instrument src --output srcInstrumented</pre>
|
|
14
|
-
<li>run phantomjs qunit runner on this file (does not need webserver)
|
|
15
|
-
<pre>phantomjs runner.js index.html</pre>
|
|
16
|
-
<li>the runner saves coverage report code_coverage_report.json
|
|
17
|
-
<li>write complete report including line by line indicators
|
|
18
|
-
<pre>istanbul report --root . -v html code_coverage_report.json --dir cover</pre>
|
|
19
|
-
</ol>
|
|
20
|
-
|
|
21
|
-
<div id="qunit"></div>
|
|
22
|
-
<script src="qunit/qunit-1.10.0.js"></script>
|
|
23
|
-
<script src="../../src/QUnitBrowserAdapter.js"></script>
|
|
24
|
-
|
|
25
|
-
<script>
|
|
26
|
-
dojoConfig = {
|
|
27
|
-
async: true,
|
|
28
|
-
cacheBust: true,
|
|
29
|
-
parseOnLoad: false,
|
|
30
|
-
baseUrl: ".",
|
|
31
|
-
isDebug: true,
|
|
32
|
-
packages: [
|
|
33
|
-
{
|
|
34
|
-
name: 'dojo',
|
|
35
|
-
location: './dojo-1.8.1'
|
|
36
|
-
}
|
|
37
|
-
]
|
|
38
|
-
};
|
|
39
|
-
</script>
|
|
40
|
-
<!--
|
|
41
|
-
<script src="packages.js"></script>
|
|
42
|
-
-->
|
|
43
|
-
<script src="packagesDefault.js"></script>
|
|
44
|
-
|
|
45
|
-
<script src="./dojo-1.8.1/dojo.js"></script>
|
|
46
|
-
<script>
|
|
47
|
-
require(["tests/FooTest"]);
|
|
48
|
-
</script>
|
|
49
|
-
</body>
|
|
50
|
-
</html>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
console.assert(dojoConfig, 'dojoConfig is undefined');
|
|
2
|
-
console.assert(Array.isArray(dojoConfig.packages), 'dojoConfig.packages should be an array');
|
|
3
|
-
dojoConfig.packages = dojoConfig.packages.concat([
|
|
4
|
-
{
|
|
5
|
-
name: "tests",
|
|
6
|
-
location: "testInstrumented"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
name: "src",
|
|
10
|
-
location: "srcInstrumented"
|
|
11
|
-
}
|
|
12
|
-
]);
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
console.assert(dojoConfig, 'dojoConfig is undefined');
|
|
2
|
-
console.assert(Array.isArray(dojoConfig.packages), 'dojoConfig.packages should be an array');
|
|
3
|
-
dojoConfig.packages = dojoConfig.packages.concat([
|
|
4
|
-
{
|
|
5
|
-
name: "tests",
|
|
6
|
-
location: "test"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
name: "src",
|
|
10
|
-
location: "src"
|
|
11
|
-
}
|
|
12
|
-
]);
|
|
@@ -1,235 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* QUnit v1.10.0 - A JavaScript Unit Testing Framework
|
|
3
|
-
*
|
|
4
|
-
* http://qunitjs.com
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2012 jQuery Foundation and other contributors
|
|
7
|
-
* Released under the MIT license.
|
|
8
|
-
* http://jquery.org/license
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
/** Font Family and Sizes */
|
|
12
|
-
|
|
13
|
-
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
|
|
14
|
-
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
|
|
18
|
-
#qunit-tests { font-size: smaller; }
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
/** Resets */
|
|
22
|
-
|
|
23
|
-
#qunit-tests, #qunit-tests ol, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
|
|
24
|
-
margin: 0;
|
|
25
|
-
padding: 0;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
/** Header */
|
|
30
|
-
|
|
31
|
-
#qunit-header {
|
|
32
|
-
padding: 0.5em 0 0.5em 1em;
|
|
33
|
-
|
|
34
|
-
color: #8699a4;
|
|
35
|
-
background-color: #0d3349;
|
|
36
|
-
|
|
37
|
-
font-size: 1.5em;
|
|
38
|
-
line-height: 1em;
|
|
39
|
-
font-weight: normal;
|
|
40
|
-
|
|
41
|
-
border-radius: 5px 5px 0 0;
|
|
42
|
-
-moz-border-radius: 5px 5px 0 0;
|
|
43
|
-
-webkit-border-top-right-radius: 5px;
|
|
44
|
-
-webkit-border-top-left-radius: 5px;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
#qunit-header a {
|
|
48
|
-
text-decoration: none;
|
|
49
|
-
color: #c2ccd1;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
#qunit-header a:hover,
|
|
53
|
-
#qunit-header a:focus {
|
|
54
|
-
color: #fff;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
#qunit-testrunner-toolbar label {
|
|
58
|
-
display: inline-block;
|
|
59
|
-
padding: 0 .5em 0 .1em;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
#qunit-banner {
|
|
63
|
-
height: 5px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
#qunit-testrunner-toolbar {
|
|
67
|
-
padding: 0.5em 0 0.5em 2em;
|
|
68
|
-
color: #5E740B;
|
|
69
|
-
background-color: #eee;
|
|
70
|
-
overflow: hidden;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
#qunit-userAgent {
|
|
74
|
-
padding: 0.5em 0 0.5em 2.5em;
|
|
75
|
-
background-color: #2b81af;
|
|
76
|
-
color: #fff;
|
|
77
|
-
text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
#qunit-modulefilter-container {
|
|
81
|
-
float: right;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
/** Tests: Pass/Fail */
|
|
85
|
-
|
|
86
|
-
#qunit-tests {
|
|
87
|
-
list-style-position: inside;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
#qunit-tests li {
|
|
91
|
-
padding: 0.4em 0.5em 0.4em 2.5em;
|
|
92
|
-
border-bottom: 1px solid #fff;
|
|
93
|
-
list-style-position: inside;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
|
|
97
|
-
display: none;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
#qunit-tests li strong {
|
|
101
|
-
cursor: pointer;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
#qunit-tests li a {
|
|
105
|
-
padding: 0.5em;
|
|
106
|
-
color: #c2ccd1;
|
|
107
|
-
text-decoration: none;
|
|
108
|
-
}
|
|
109
|
-
#qunit-tests li a:hover,
|
|
110
|
-
#qunit-tests li a:focus {
|
|
111
|
-
color: #000;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
#qunit-tests ol {
|
|
115
|
-
margin-top: 0.5em;
|
|
116
|
-
padding: 0.5em;
|
|
117
|
-
|
|
118
|
-
background-color: #fff;
|
|
119
|
-
|
|
120
|
-
border-radius: 5px;
|
|
121
|
-
-moz-border-radius: 5px;
|
|
122
|
-
-webkit-border-radius: 5px;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
#qunit-tests table {
|
|
126
|
-
border-collapse: collapse;
|
|
127
|
-
margin-top: .2em;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
#qunit-tests th {
|
|
131
|
-
text-align: right;
|
|
132
|
-
vertical-align: top;
|
|
133
|
-
padding: 0 .5em 0 0;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
#qunit-tests td {
|
|
137
|
-
vertical-align: top;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
#qunit-tests pre {
|
|
141
|
-
margin: 0;
|
|
142
|
-
white-space: pre-wrap;
|
|
143
|
-
word-wrap: break-word;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
#qunit-tests del {
|
|
147
|
-
background-color: #e0f2be;
|
|
148
|
-
color: #374e0c;
|
|
149
|
-
text-decoration: none;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
#qunit-tests ins {
|
|
153
|
-
background-color: #ffcaca;
|
|
154
|
-
color: #500;
|
|
155
|
-
text-decoration: none;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
/*** Test Counts */
|
|
159
|
-
|
|
160
|
-
#qunit-tests b.counts { color: black; }
|
|
161
|
-
#qunit-tests b.passed { color: #5E740B; }
|
|
162
|
-
#qunit-tests b.failed { color: #710909; }
|
|
163
|
-
|
|
164
|
-
#qunit-tests li li {
|
|
165
|
-
padding: 5px;
|
|
166
|
-
background-color: #fff;
|
|
167
|
-
border-bottom: none;
|
|
168
|
-
list-style-position: inside;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
/*** Passing Styles */
|
|
172
|
-
|
|
173
|
-
#qunit-tests li li.pass {
|
|
174
|
-
color: #3c510c;
|
|
175
|
-
background-color: #fff;
|
|
176
|
-
border-left: 10px solid #C6E746;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
#qunit-tests .pass { color: #528CE0; background-color: #D2E0E6; }
|
|
180
|
-
#qunit-tests .pass .test-name { color: #366097; }
|
|
181
|
-
|
|
182
|
-
#qunit-tests .pass .test-actual,
|
|
183
|
-
#qunit-tests .pass .test-expected { color: #999999; }
|
|
184
|
-
|
|
185
|
-
#qunit-banner.qunit-pass { background-color: #C6E746; }
|
|
186
|
-
|
|
187
|
-
/*** Failing Styles */
|
|
188
|
-
|
|
189
|
-
#qunit-tests li li.fail {
|
|
190
|
-
color: #710909;
|
|
191
|
-
background-color: #fff;
|
|
192
|
-
border-left: 10px solid #EE5757;
|
|
193
|
-
white-space: pre;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
#qunit-tests > li:last-child {
|
|
197
|
-
border-radius: 0 0 5px 5px;
|
|
198
|
-
-moz-border-radius: 0 0 5px 5px;
|
|
199
|
-
-webkit-border-bottom-right-radius: 5px;
|
|
200
|
-
-webkit-border-bottom-left-radius: 5px;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
#qunit-tests .fail { color: #000000; background-color: #EE5757; }
|
|
204
|
-
#qunit-tests .fail .test-name,
|
|
205
|
-
#qunit-tests .fail .module-name { color: #000000; }
|
|
206
|
-
|
|
207
|
-
#qunit-tests .fail .test-actual { color: #EE5757; }
|
|
208
|
-
#qunit-tests .fail .test-expected { color: green; }
|
|
209
|
-
|
|
210
|
-
#qunit-banner.qunit-fail { background-color: #EE5757; }
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
/** Result */
|
|
214
|
-
|
|
215
|
-
#qunit-testresult {
|
|
216
|
-
padding: 0.5em 0.5em 0.5em 2.5em;
|
|
217
|
-
|
|
218
|
-
color: #2b81af;
|
|
219
|
-
background-color: #D2E0E6;
|
|
220
|
-
|
|
221
|
-
border-bottom: 1px solid white;
|
|
222
|
-
}
|
|
223
|
-
#qunit-testresult .module-name {
|
|
224
|
-
font-weight: bold;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
/** Fixture */
|
|
228
|
-
|
|
229
|
-
#qunit-fixture {
|
|
230
|
-
position: absolute;
|
|
231
|
-
top: -10000px;
|
|
232
|
-
left: -10000px;
|
|
233
|
-
width: 1000px;
|
|
234
|
-
height: 1000px;
|
|
235
|
-
}
|