Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Duda committed May 9, 2024
1 parent fdbc308 commit 0c6eca0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/commits/verification.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { VerificationStatus, verifyUnpushedCommits } from "../../src/Commands/ru
import { Utils } from "../../src/Scope/Utils";
import { FileTagsDatabase } from "../../src/Scope/FileTagsDatabase";
import { ConfigFile } from "../../src/Scope/ConfigFile";
import { join } from "path";

const fs = require('fs');

Expand Down Expand Up @@ -117,7 +118,7 @@ describe("Commit verification by scope tags script", () => {
const allFiles = newlyAddedFiles.concat(modifiedFiles);

createEmptyFiles(newlyAddedFiles, REPO_PATH);
modifiedFiles.forEach(file => appendSomeTextToFile(file));
modifiedFiles.forEach(file => appendSomeTextToFile(join(REPO_PATH, file)));

await commitFiles(allFiles, REPO_PATH);

Expand Down

0 comments on commit 0c6eca0

Please sign in to comment.