File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -65,25 +65,25 @@ PS C:\Repos\PSResourceGet> .\build.ps1 -Clean -Build -BuildConfiguration Debug -
65
65
PS C:\Repos\PSResourceGet> .\build.ps1 -Clean -Build -BuildConfiguration Debug -BuildFramework netstandard2.0
66
66
```
67
67
68
- * Publish the module to a local repository
68
+ * Run functional tests
69
69
70
70
``` powershell
71
- PS C:\Repos\PSResourceGet> .\build.ps1 -Publish
71
+ PS C:\Repos\PSResourceGet> Invoke-Pester
72
72
```
73
73
74
- * Run functional tests
75
-
76
74
``` powershell
77
- PS C:\Repos\PSResourceGet> Invoke-PSPackageProjectTest -Type Functional
75
+ PS C:\Repos\PSResourceGet> Invoke-Pester <file-name>
78
76
```
79
77
80
78
* Import the module into a new PowerShell session
81
79
82
80
``` powershell
83
81
# If running PowerShell 6+
82
+ C:\> pwsh
84
83
C:\> Import-Module C:\Repos\PSResourceGet\out\PSResourceGet
85
84
86
85
# If running Windows PowerShell
86
+ c:\> PowerShell
87
87
C:\> Import-Module C:\Repos\PSResourceGet\out\PSResourceGet\PSResourceGet.psd1
88
88
```
89
89
You can’t perform that action at this time.
0 commit comments