Skip to content

Commit b52723b

Browse files
committed
run integration tests only for parse server >=7
1 parent 917f3c4 commit b52723b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/integration.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { httpRequest } = require('./support/request');
33
const fileName = 'file.txt';
44
const fileData = 'hello world';
55

6-
describe_only_parse_server_version('<=7')('Parse Server <=7 integration test', () => {
6+
describe_only_parse_server_version('>=7')('Parse Server >=7 integration test', () => {
77
it('stores a file', async () => {
88
const base64 = Buffer.from(fileData).toString('base64');
99
const file = new Parse.File(fileName, { base64 });

0 commit comments

Comments
 (0)