Skip to content

Commit 74705dd

Browse files
committed
enable tests
1 parent 6f073fe commit 74705dd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spec/.eslintrc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"jequal": true,
3535
"create": true,
3636
"arrayContains": true,
37-
"databaseAdapter": true,
37+
"databaseAdapter": true
3838
},
3939
"rules": {
4040
"no-console": [0],
41-
"no-var": "error",
41+
"no-var": "error"
4242
}
4343
}

spec/ParseGraphQLServer.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6793,7 +6793,7 @@ describe('ParseGraphQLServer', () => {
67936793

67946794
describe('Files Mutations', () => {
67956795
describe('Create', () => {
6796-
xit('should return File object', async () => {
6796+
it_only_node_version('<17')('should return File object', async () => {
67976797
const clientMutationId = uuidv4();
67986798

67996799
parseServer = await global.reconfigureServer({
@@ -9096,7 +9096,7 @@ describe('ParseGraphQLServer', () => {
90969096
expect(result6[0].node.name).toEqual('imACountry3');
90979097
});
90989098

9099-
xit('should support files', async () => {
9099+
it_only_node_version('<17')('should support files', async () => {
91009100
try {
91019101
parseServer = await global.reconfigureServer({
91029102
publicServerURL: 'http://localhost:13377/parse',

0 commit comments

Comments
 (0)