Skip to content

Commit

Permalink
fixing TS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Jul 22, 2020
1 parent 784b661 commit 2be9b50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {
);

expect(response.status).to.be(200);
expect(response.body.kpis.map((kpi) => kpi.name)).to.eql([
expect(response.body.kpis.map((kpi: { name: string }) => kpi.name)).to.eql([
'app',
'http',
'postgresql',
Expand Down

0 comments on commit 2be9b50

Please sign in to comment.