We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b48b0c commit 16f4976Copy full SHA for 16f4976
src/DataTables/assets/test/controller.test.ts
@@ -11,7 +11,9 @@ import { Application } from '@hotwired/stimulus';
11
import { waitFor } from '@testing-library/dom';
12
import DataTableController from '../src/controller';
13
14
-const startDataTableTest = async (tableHtml: string): Promise<{ table: HTMLTableElement; dataTable: DataTable<any> }> => {
+const startDataTableTest = async (
15
+ tableHtml: string
16
+): Promise<{ table: HTMLTableElement; dataTable: DataTable<any> }> => {
17
let dataTable: DataTable<any> | null = null;
18
19
document.body.addEventListener('datatables:pre-connect', () => {
@@ -78,4 +80,4 @@ describe('DataTableController', () => {
78
80
['Jane', 'Smith'],
79
81
]);
82
});
-});
83
+});
0 commit comments