You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-25Lines changed: 1 addition & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,17 +50,7 @@ const devServer = new DevServer(appRoot, {
50
50
pattern: 'resources/views/**/*.edge',
51
51
reloadServer: false,
52
52
}
53
-
],
54
-
55
-
/**
56
-
* The assets bundler process to start
57
-
*/
58
-
assets: {
59
-
enabled: true,
60
-
name: 'vite',
61
-
cmd: 'vite',
62
-
args: []
63
-
}
53
+
]
64
54
})
65
55
66
56
devServer.onError((error) => {
@@ -87,9 +77,6 @@ await devServer.start()
87
77
## Test runner
88
78
The `TestRunner` is used to execute the `bin/test.ts` file of your AdonisJS application. Like the `DevServer`, the `TestRunner` allows you to watch for file changes and re-run the tests. The following steps are taken to re-run tests in watch mode.
89
79
90
-
> [!NOTE]
91
-
> Read [Using a file watcher](#using-a-file-watcher) section to understand which files are watched by the file watcher.
92
-
93
80
- If the changed file is a test file, only tests for that file will be re-run.
94
81
- Otherwise, all tests will re-run with respect to the initial filters applied when running the `node ace test` command.
0 commit comments