Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
dotnet-version: 10.0

- name: Checkout source code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Test
run: dotnet test --configuration Release --logger "GitHubActions;summary-include-passed=false;summary-include-skipped=false"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
dotnet-version: 10.0

- name: Checkout source code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Test
run: dotnet test --configuration Release --logger "GitHubActions;summary-include-passed=false;summary-include-skipped=false"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
dotnet-version: 10.0

- name: Checkout source code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Test
run: dotnet test --configuration Release --logger "GitHubActions;summary-include-passed=false;summary-include-skipped=false"
Expand Down
2 changes: 1 addition & 1 deletion Jint.Tests/Runtime/AsyncTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void ShouldReturnedTaskConvertedToPromiseInJS()
Assert.Equal(AsyncTestClass.TestString, result);
}

[Fact]
[Fact(Skip = "Flaky test")]
public void ShouldRespectCustomProvidedTimeoutWhenUnwrapping()
{
Engine engine = new(options => options.ExperimentalFeatures = ExperimentalFeature.TaskInterop);
Expand Down
96 changes: 0 additions & 96 deletions Jint.sln

This file was deleted.

29 changes: 29 additions & 0 deletions Jint.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<Solution>
<Folder Name="/Solution Items/">
<File Path=".editorconfig" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
<File Path="global.json" />
<File Path="README.md" />
</Folder>
<Folder Name="/Solution Items/.github/">
<File Path=".github/dependabot.yml" />
</Folder>
<Folder Name="/Solution Items/.github/ISSUE_TEMPLATE/">
<File Path=".github/ISSUE_TEMPLATE/bug_report.md" />
<File Path=".github/ISSUE_TEMPLATE/feature_request.md" />
</Folder>
<Folder Name="/Solution Items/.github/workflows/">
<File Path=".github/workflows/build.yml" />
<File Path=".github/workflows/pr.yml" />
<File Path=".github/workflows/release.yml" />
</Folder>
<Project Path="Jint.AotExample/Jint.AotExample.csproj" />
<Project Path="Jint.Benchmark/Jint.Benchmark.csproj" />
<Project Path="Jint.Repl/Jint.Repl.csproj" />
<Project Path="Jint.Tests.CommonScripts/Jint.Tests.CommonScripts.csproj" />
<Project Path="Jint.Tests.PublicInterface/Jint.Tests.PublicInterface.csproj" />
<Project Path="Jint.Tests.Test262/Jint.Tests.Test262.csproj" />
<Project Path="Jint.Tests/Jint.Tests.csproj" />
<Project Path="Jint/Jint.csproj" />
</Solution>