Skip to content

Commit

Permalink
fix(package): @kronos-integration/service@8.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Dec 16, 2019
1 parent 42664a5 commit 14bb026
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"test": "ava"
},
"dependencies": {
"@kronos-integration/service": "^8.3.1"
"@kronos-integration/service": "^8.3.2"
},
"devDependencies": {
"ava": "^2.4.0",
Expand Down
7 changes: 3 additions & 4 deletions tests/admin-test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ import { StandaloneServiceProvider } from "@kronos-integration/service";
import { ServiceAdmin } from "../src/service-admin.mjs";

const config = {
admin: {
type: ServiceAdmin
}
name: "admin",
type: ServiceAdmin
};

test("service-admin", async t => {
const sp = new StandaloneServiceProvider();
const [admin] = await sp.declareServices(config);
const admin = await sp.declareService(config);
await admin.start();

t.is(admin.state, "running");
Expand Down

0 comments on commit 14bb026

Please sign in to comment.