diff --git a/.vscode/launch.json b/.vscode/launch.json index 33f5fea..8687848 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,12 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "command": "scope --report-for-commit-list buildData.json log.html", + "name": "Run test of --report-for-commit-list", + "request": "launch", + "type": "node-terminal" + }, { "name": "Debug Jest Tests (Windows)", "type": "node", diff --git a/log.html b/log.html new file mode 100644 index 0000000..ab91afa --- /dev/null +++ b/log.html @@ -0,0 +1,391 @@ + + + + + + + + build-123 - Scope Tags + + +
+ Instructions +

build-123

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Configuration
Package version0.2.9
Current date2024-5-10 17:14:45
Build data file locationC:\Users\mateusz.duda\scope-tags\buildData.json
Build tagbuild-123
Posted reports0 of 1 generated
+
+
+
+

Issues to be updated

+ +
+
+
+
+

JIRA-KEY

+ Back to top +
+
+

+ From commit: added tests for tags definition file + (35077cb91ab71c20eef1d13482c26af45a51238b) +

+

Has relevancy data?: no

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
File pathChangeRenamed + Relevancy + LinesTag / moduleReferenced files
+ package.json + MODIFIED--++1 +

+ Tag / Default module
asdflkj / + Second module +

+
-
+ src/Commands/runAddCommand.ts + MODIFIED--++8 +

Tag / Default module

+
+
src/scope.ts
+
+ src/Commands/runVerifyUnpushedCommitsCommand.ts + MODIFIED--++12

+
src/scope.ts
+
+ src/Git/GitRepository.ts + MODIFIED--++6

+
+ src/Console/FileTagger.ts +
+
+ src/Commands/runCommitCommand.ts +
+
+ src/Commands/runAddCommand.ts +
+
+ src/Commands/runVerifyCommand.ts +
+
+ src/Commands/runVerifyUnpushedCommitsCommand.ts +
+
+ src/Report/ReportGenerator.ts +
+
+ src/Commands/runReportForCommitCommand.ts +
+
+ src/Commands/runReportForCommitListCommand.ts +
+
+ src/Commands/runTagCommand.ts +
+
+ src/Commands/runSkipVerificationAndPushCommand.ts +
+
+ src/Commands/runLogCommitCommand.ts +
+
+ src/Commands/runListUnpushedCommitsCommand.ts +
+
+ src/Git/Types.ts + MODIFIED--++1

+
+ src/Relevancy/Relevancy.ts +
+
+ src/Scope/FileTagsDatabase.ts +
+
+ src/Relevancy/RelevancyManager.ts +
+
+ src/Git/GitRepository.ts +
+
+ src/Console/FileTagger.ts +
+
+ src/Commands/runAddCommand.ts +
+
+ src/Logger/Logger.ts +
+
+ src/Report/ReportGenerator.ts +
+
+ src/Commands/runLogCommitCommand.ts +
+
+ src/Commands/runVerifyUnpushedCommitsCommand.ts +
+
+ src/Scope/TagsDefinitionFile.ts + MODIFIED--++20

+
+ src/Scope/FileTagsDatabase.ts +
+
+ src/Console/TagManager.ts +
+
+ src/Report/ReportGenerator.ts +
+
+ src/Console/ModuleManager.ts +
+
+ src/Console/Menu.ts +
+
+ src/Console/FileTagger.ts +
+
+ src/Commands/runCommitCommand.ts +
+
+ src/Commands/runAddCommand.ts +
+
+ src/Commands/runReportForCommitCommand.ts +
+
+ src/Commands/runReportForCommitListCommand.ts +
+
+ src/Commands/runStartCommandLineInterfaceCommand.ts +
+
+ src/Commands/runTagCommand.ts +
+
+ test/scope/tagsDefinitionFile.test.ts + ADDED--++60

-
+
+
+
+
+

Instructions

+
+ Reading additional data + Some entries have additional data on hover. You can hover over them to read the associated data - full commit + message, tags associated with a file, etc. +
+
+
+
+ + diff --git a/test/commits/relevancy.test.ts b/test/commits/relevancy.test.ts index 4cc8058..e7f657e 100644 --- a/test/commits/relevancy.test.ts +++ b/test/commits/relevancy.test.ts @@ -1,6 +1,6 @@ -import { CommitMessageRelevancyInfo, RelevancyManager } from "../../src/Relevancy/RelevancyManager"; +import { RelevancyManager } from "../../src/Relevancy/RelevancyManager"; import { FileData, GitDeltaType } from "../../src/Git/Types"; -import { Relevancy } from "../../src/Relevancy/Relevancy"; +import { CommitMessageRelevancyInfo, Relevancy } from "../../src/Relevancy/Relevancy"; import { Commit } from "nodegit"; const fs = require('fs');