Skip to content

Commit

Permalink
bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
zoe-codez committed Nov 14, 2024
1 parent a6af5f1 commit ac83d9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"start:mock": "tsx src/mock/main.ts",
"build": "rm -rf dist; tsc",
"test": "./scripts/test.sh",
"test": "vitest --no-file-parallelism",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"upgrade": "yarn up '@digital-alchemy/*'",
Expand Down
4 changes: 2 additions & 2 deletions src/test/device.spec.mts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ describe("Device", () => {
});
});

it("loads version from package.json if synapseVersion is not set", async () => {
it.only("loads version from package.json if synapseVersion is not set", async () => {
expect.assertions(1);
await synapseTestRunner.run(({ synapse }) => {
await synapseTestRunner.emitLogs().run(({ synapse }) => {
const version = v4();
const packageJson = JSON.stringify({ version });

Expand Down

0 comments on commit ac83d9c

Please sign in to comment.