mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import { startServer, stopServer } from "nativescript-dev-appium";
|
|
|
|
before("start server", async () => {
|
|
await startServer();
|
|
});
|
|
|
|
after("stop server", async () => {
|
|
await stopServer();
|
|
});
|