Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Nov 14, 2024
1 parent 04171d2 commit 54b3273
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
uses: the-guild-org/shared-config/setup@v1
with:
node-version: ${{matrix.node-version}}
- name: Build
run: yarn build
- name: Test
run: yarn test

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@
"vitest": "^2.1.3"
},
"resolutions": {
"@graphql-tools/delegate": "workspace:^",
"@opentelemetry/resources": "patch:@opentelemetry/resources@npm%3A1.25.1#~/.yarn/patches/@opentelemetry-resources-npm-1.25.1-d294145a2e.patch",
"graphql": "^16.9.0",
"graphql-rate-limit@npm:^3.3.0": "patch:graphql-rate-limit@npm%3A3.3.0#~/.yarn/patches/graphql-rate-limit-npm-3.3.0-3ae882ba75.patch",
"ioredis-mock@npm:^8.8.3": "patch:ioredis-mock@npm%3A8.9.0#~/.yarn/patches/ioredis-mock-npm-8.9.0-530d4422b9.patch",
"jest-snapshot": "patch:jest-snapshot@npm%3A29.7.0#~/.yarn/patches/jest-snapshot+29.7.0.patch",
"pkgroll": "patch:pkgroll@npm%3A2.5.1#~/.yarn/patches/pkgroll-npm-2.5.1-9b062c22ca.patch",
"sequelize": "^6.37.5",
"@graphql-tools/delegate": "workspace:^",
"sqlite3": "^5.1.7"
}
}
4 changes: 2 additions & 2 deletions vitest-jest.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ module.exports = new Proxy(require('@jest/globals'), {
return jestGlobals.describe.skip(`${name} >`, ...args);
}
return jestGlobals.describe.skip(name, ...args);
}
};
describeFn.only = function describeOnly(name, ...args) {
if (typeof name === 'string') {
return jestGlobals.describe.only(`${name} >`, ...args);
}
return jestGlobals.describe.only(name, ...args);
}
};
return describeFn;
}
return Reflect.get(jestGlobals, prop, receiver);
Expand Down

0 comments on commit 54b3273

Please sign in to comment.