We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aac07d commit 0668183Copy full SHA for 0668183
test/redisGraphAPITest.js
@@ -5,11 +5,9 @@ RedisGraphAPI = require('../src/redisGraph');
5
6
describe('RedisGraphAPI Test', () =>{
7
const api = new RedisGraphAPI("social");
8
- // Dummy create to make sure first delete won't fail
9
- api.query("CREATE ({name:'roi',age:32})");
10
11
beforeEach( () => {
12
- return api.deleteGraph();
+ return api.deleteGraph().catch(()=>{});
13
});
14
15
it('test bring your client', () => {
0 commit comments