File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 11import { describe , expect , it } from 'bun:test'
22import { 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 ( '' , ( ) => '' )
You can’t perform that action at this time.
0 commit comments