10 lines
		
	
	
		
			293 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			293 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
| Param(
 | |
|     [Parameter(ValueFromRemainingArguments = $true)]
 | |
|     [string[]] $RestArgs
 | |
| )
 | |
| 
 | |
| $Root = Split-Path -Parent $PSScriptRoot
 | |
| $env:UPDATE_GOLDENS = "1"
 | |
| 
 | |
| dotnet test (Join-Path $Root "src/Concelier/__Tests/StellaOps.Concelier.Models.Tests/StellaOps.Concelier.Models.Tests.csproj") @RestArgs
 |