Skip to content

Commit 1051588

Browse files
committed
fix: fix ts typing in unit tests
1 parent d6a912a commit 1051588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app-min/test/my-app.spec.ext

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { MyApp } from '../src/my-app';
1414
function createAu(template, ...deps) {
1515
// @endif
1616
// @if typescript
17-
function createAu(template: string, ...deps: readonly unknown[]): Aurelia {
17+
function createAu(template: string, ...deps: readonly unknown[]) {
1818
// @endif
1919
const wrapper = CustomElement.define({name: 'wrapper', template});
2020
document.body.appendChild(document.createElement('wrapper'));

0 commit comments

Comments
 (0)