diff --git a/build/Tasks/CopyOutputTask.cs b/build/Tasks/CopyOutputTask.cs index 9047fb2..1bcd241 100644 --- a/build/Tasks/CopyOutputTask.cs +++ b/build/Tasks/CopyOutputTask.cs @@ -15,8 +15,8 @@ public class CopyOutputTask : FrostingTask public override void Run(BuildContext context) { var powershellModuleName = "PowershellModule"; - // TODO: probably don't create full file locations when I can pass the output dir in and have the script - // make the path + // TODO: [#10] Refactor file paths used in build project to be more explict and easier to understand + // Probably don't create full file locations when I can pass the output dir in and have the script make the path var scriptParams = new { PowershellModuleFileLocation = $"{context.PowershellModuleOutputDir}/{powershellModuleName}.psd1", diff --git a/tests/ModuleTests/Git/AddRegistrationTests.cs b/tests/ModuleTests/Git/AddRegistrationTests.cs index bdecf43..883e595 100644 --- a/tests/ModuleTests/Git/AddRegistrationTests.cs +++ b/tests/ModuleTests/Git/AddRegistrationTests.cs @@ -1,10 +1,10 @@ using System.Text; -using ModuleCore.Calendar; using ModuleCore.Git; using ModuleTests.Git.TestData; namespace ModuleTests.Git; +// TODO: [#12] GitRepoRegistration tests should reset database at start of each test public class AddRegistrationTests { private static readonly VerifySettings Settings;