File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 14
14
*/
15
15
import { Application , type ControllerConstructor } from '@hotwired/stimulus' ;
16
16
import {
17
- eagerControllers ,
18
- lazyControllers ,
19
- isApplicationDebug ,
20
17
type EagerControllersCollection ,
21
18
type LazyControllersCollection ,
19
+ eagerControllers ,
20
+ isApplicationDebug ,
21
+ lazyControllers ,
22
22
} from './controllers.js' ;
23
23
24
24
const controllerAttribute = 'data-controller' ;
Original file line number Diff line number Diff line change
1
+ import { Application , Controller } from '@hotwired/stimulus' ;
2
+ import { waitFor } from '@testing-library/dom' ;
1
3
// load from dist because the source TypeScript file points directly to controllers.js,
2
4
// which does not actually exist in the source code
3
5
import { loadControllers } from '../dist/loader' ;
4
- import { Application , Controller } from '@hotwired/stimulus' ;
5
6
import type { EagerControllersCollection , LazyControllersCollection } from '../src/controllers' ;
6
- import { waitFor } from '@testing-library/dom' ;
7
7
8
8
let isController1Initialized = false ;
9
9
let isController2Initialized = false ;
You can’t perform that action at this time.
0 commit comments