File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 192
192
"@types/winston" : " ^2.4.4" ,
193
193
"@typescript-eslint/eslint-plugin" : " ^5.22.0" ,
194
194
"@typescript-eslint/parser" : " ^5.22.0" ,
195
- "aegir" : " ^37.0.15 " ,
195
+ "aegir" : " ^44.1.1 " ,
196
196
"check-aegir-project" : " ^1.0.3" ,
197
197
"cors" : " ^2.8.5" ,
198
198
"cp-cli" : " ^2.0.0" ,
207
207
"regenerator-runtime" : " ^0.13.9" ,
208
208
"ts-node" : " ^10.7.0" ,
209
209
"tsc-silent" : " ^1.2.1" ,
210
- "typescript" : " ^4.6 .4" ,
210
+ "typescript" : " ^5.5 .4" ,
211
211
"winston" : " ^3.6.0"
212
212
}
213
213
}
Original file line number Diff line number Diff line change 1
1
/* eslint-env browser, node, mocha */
2
2
import { expect } from 'aegir/chai'
3
3
4
- import { Configuration , ConfigurationParameters } from '../src/index.js'
4
+ import { Configuration , type ConfigurationParameters } from '../src/index.js'
5
5
6
- // export default async (setup: () => Promise<unknown>) => {
7
6
describe ( 'Configuration' , ( ) => {
8
7
it ( 'Can be instantiated' , ( ) => {
9
8
const configuration : ConfigurationParameters = { }
10
9
expect ( ( ) => new Configuration ( configuration ) ) . not . to . throw ( )
11
10
} )
12
11
} )
13
- // }
You can’t perform that action at this time.
0 commit comments