Skip to content

Commit 88bf8b1

Browse files
feat: add integration tests script
1 parent 2a3da5e commit 88bf8b1

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo off
2+
cd /d "%~dp0..\.."
3+
4+
echo Running: nuke RunIntegrationTests
5+
nuke RunIntegrationTests
6+
7+
pause
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Set-Location -Path (Split-Path -Parent (Split-Path -Parent $PSScriptRoot))
2+
3+
Write-Host "Running: nuke RunIntegrationTests"
4+
nuke RunIntegrationTests
5+
6+
if ($Host.Name -eq "ConsoleHost") {
7+
Write-Host "Press any key to continue..."
8+
$Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyUp") > $null
9+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
cd "$(dirname "$(dirname "$(dirname "$0")")")"
3+
4+
echo "Running: nuke RunIntegrationTests"
5+
nuke RunIntegrationTests

0 commit comments

Comments
 (0)