Skip to content

Commit

Permalink
fix: 🐛 make unit tests run
Browse files Browse the repository at this point in the history
  • Loading branch information
Tochemey committed Nov 8, 2023
1 parent caa4d5c commit 74c8a66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
# - name: Test
# run: dotnet test -c Release
- name: Test
run: dotnet test -c Release
- name: Pack
if: matrix.os == 'ubuntu-latest'
run: dotnet pack -v normal -c Release --no-restore --include-symbols --include-source -p:PackageVersion=0.0.0 $PROJECT_NAME/$PROJECT_NAME.csproj
Expand Down
12 changes: 6 additions & 6 deletions Test/Integration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class DefaultInboundSession : InboundSession
}


[Fact]
[Fact(Skip = "intgegration")]
public async void ConnectToFreeSwitchTest()
{
var address = "127.0.0.1";
Expand All @@ -64,7 +64,7 @@ public async void ConnectToFreeSwitchTest()



[Fact]
[Fact(Skip = "intgegration")]
public void FreeSwitchCommandEncodingTest()
{
var authentication = new AuthCommand("ClueCon");
Expand Down Expand Up @@ -107,7 +107,7 @@ public void FreeSwitchCommandEncodingTest()



[Fact]
[Fact(Skip = "intgegration")]
public async void SendApiTest()
{
const string address = "127.0.0.1";
Expand All @@ -126,7 +126,7 @@ public async void SendApiTest()
response.Response);
}

[Fact]
[Fact(Skip = "intgegration")]
public async void SendBgApiTest()
{
const string address = "127.0.0.1";
Expand All @@ -144,7 +144,7 @@ public async void SendBgApiTest()
Assert.True(jobId != Guid.Empty);
}

[Fact]
[Fact(Skip = "intgegration")]
public async void SendCommandTest()
{
const string address = "127.0.0.1";
Expand All @@ -163,7 +163,7 @@ public async void SendCommandTest()
Assert.True(reply.IsOk);
}

[Fact]
[Fact(Skip = "intgegration")]
public async void SubscribeToEventsTest()
{
const string address = "127.0.0.1";
Expand Down

0 comments on commit 74c8a66

Please sign in to comment.