Skip to content

Commit d164882

Browse files
committed
🧹 chore: bug fix
1 parent e228177 commit d164882

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 📗 Documentation Issue
2+
description: Tell us if there is missing or incorrect documentation
3+
labels: [docs]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for submitting a documentation request. It helps make Elysia.JS better.
9+
- type: dropdown
10+
attributes:
11+
label: What is the type of issue?
12+
multiple: true
13+
options:
14+
- Documentation is missing
15+
- Documentation is incorrect
16+
- Documentation is confusing
17+
- Example code is not working
18+
- Something else
19+
- type: textarea
20+
attributes:
21+
label: What is the issue?
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Where did you find it?
27+
description: If possible, please provide the URL(s) where you found this issue.

test/path/plugin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, expect, it } from 'bun:test'
22
import { Elysia } from '../../src'
33

4-
describe.only('plugin', () => {
4+
describe('plugin', () => {
55
it('scoped plugin routes are visible in app.routes', () => {
66
const plugin = new Elysia({ prefix: '/v1', scoped: true })
77
.get('', () => '')

0 commit comments

Comments
 (0)