Skip to content

Commit

Permalink
Code Coverage : Tests for groups.js Fix #585 (#769)
Browse files Browse the repository at this point in the history
* Create groups.spec.js

* Update groups.spec.js

* Update getPlugins.spec.js
  • Loading branch information
SiddheshKukade authored Sep 19, 2022
1 parent 0ad7d01 commit 7d5babc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions tests/resolvers/group_query/groups.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const database = require('../../../db');
const groups = require('../../../lib/resolvers/group_query/groups');
beforeAll(async () => {
require('dotenv').config(); // pull env variables from .env file
await database.connect();
});

afterAll(() => {
database.disconnect();
});

describe('Groups query testing for getting the lib/resolvers/group_query/groups.js', () => {
test('Testing groups Functions', async () => {
//on `groups.js` file we are only returning the data from database which can be some JSON or []
//so we will just check if it's truthy value or not in the test.
const response = await groups();
expect(response).toBeTruthy();
});
});
2 changes: 1 addition & 1 deletion tests/resolvers/plugin_query/getPlugins.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ afterAll(() => {
database.disconnect();
});

describe('Post query testing for post resolver', () => {
describe('Plugins query testing for getting the lib/resolvers/plugin_query/getPlugins.js', () => {
test('Testing getPlugins Functions', async () => {
const response = await getPlugins();
expect(response).toBeTruthy();
Expand Down

0 comments on commit 7d5babc

Please sign in to comment.