Skip to content

Commit 3787369

Browse files
committed
Merge branch 'master' into dev
# Conflicts: # sample/tests/Tests/Components/FocussingInputTest.cs # sample/tests/Tests/Components/TodoListTest.cs # src/Components/ContainerComponent.cs # src/Extensions/ElementNotFoundException.cs # src/Rendering/IRenderedFragment.cs # src/Rendering/RenderedFragmentBase.cs # src/bunit.csproj # tests/RenderedFragmentTest.cs # tests/_Imports.razor
2 parents c6fd1f6 + 955c1af commit 3787369

File tree

7 files changed

+93
-1
lines changed

7 files changed

+93
-1
lines changed

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: [egil] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
#patreon: # Replace with a single Patreon username
5+
#open_collective: # Replace with a single Open Collective username
6+
#ko_fi: # Replace with a single Ko-fi username
7+
#tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
#community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
#liberapay: # Replace with a single Liberapay username
10+
#issuehunt: # Replace with a single IssueHunt username
11+
#otechie: # Replace with a single Otechie username
12+
#custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**NOTE:** _Remove any parts of the template you do not need and replace the default text in each section with your own._
11+
12+
**Describe the bug or question**
13+
A clear and concise description of what the bug or question is.
14+
15+
**Example:**
16+
Testing this component:
17+
18+
```cshtml
19+
Component under test
20+
```
21+
22+
With this test:
23+
24+
```csharp
25+
Unit test in C# or Razor or Snapshot that fails.
26+
```
27+
28+
Results in this output:
29+
30+
```text
31+
Message output from running the test.
32+
```
33+
34+
**Expected behavior:**
35+
A clear and concise description of what you expected to happen.
36+
37+
**Version info:**
38+
- Library version:
39+
- .NET Core/Blazor version:
40+
41+
**Additional context:**
42+
Add any other context about the problem here.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**NOTE:** _Remove any parts of the template you do not need and replace the default text in each section with your own._
11+
12+
**Is your feature request related to a problem? Please describe.**
13+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
14+
15+
**Describe the solution you'd like**
16+
A clear and concise description of what you want to happen.
17+
18+
**Describe alternatives you've considered**
19+
A clear and concise description of any alternative solutions or features you've considered.
20+
21+
**Additional context**
22+
Add any other context or screenshots about the feature request here.

.github/workflows/CI.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: CI
22

3-
on: push
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'docs/**'
7+
- '.github/**'
48

59
env:
610
VERSION: 1337.0.0

.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bunit.egilhansen.com

docs/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>bUnit</title>
6+
</head>
7+
<body>
8+
<h1>bUnit</h1>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)