Skip to content

Commit d7eae46

Browse files
committed
chore(appkit): drop removed autoStart from files integration tests
server({ autoStart }) was removed on main while this branch was in flight; the test still passed autoStart: false and manually called appkit.server.start(), both of which now throw. The server starts automatically inside createApp now. Co-authored-by: Isaac Signed-off-by: Atila Fassina <atila@fassina.eu>
1 parent 70ba35d commit d7eae46

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

packages/appkit/src/plugins/files/tests/plugin.integration.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,6 @@ describe("Files Plugin Integration", () => {
502502
serverPlugin({
503503
port: 0,
504504
host: "127.0.0.1",
505-
autoStart: false,
506505
}),
507506
files({
508507
volumes: {
@@ -513,7 +512,6 @@ describe("Files Plugin Integration", () => {
513512
});
514513

515514
try {
516-
await appkit.server.start();
517515
const port = await getListeningPort(appkit.server.getServer());
518516
const localBase = `http://127.0.0.1:${port}`;
519517

@@ -542,7 +540,6 @@ describe("Files Plugin Integration", () => {
542540
serverPlugin({
543541
port: 0,
544542
host: "127.0.0.1",
545-
autoStart: false,
546543
}),
547544
files({
548545
volumes: {
@@ -553,7 +550,6 @@ describe("Files Plugin Integration", () => {
553550
});
554551

555552
try {
556-
await appkit.server.start();
557553
const port = await getListeningPort(appkit.server.getServer());
558554
const localBase = `http://127.0.0.1:${port}`;
559555

0 commit comments

Comments
 (0)