-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: david <[email protected]>
- Loading branch information
Showing
9 changed files
with
298 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pnpm turbo run fix build test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ | ||
"name":"across-indexer-monorepo", | ||
"name": "across-indexer-monorepo", | ||
"private": true, | ||
"scripts": { | ||
"build": "turbo build", | ||
"dev": "turbo dev", | ||
"fix": "turbo fix", | ||
"check": "turbo check", | ||
"start:template": "APP=template pnpm --filter @repo/node-app start" | ||
"test": "turbo test", | ||
"start:template": "APP=template pnpm --filter @repo/node-app start", | ||
"prepare": "husky" | ||
}, | ||
"devDependencies": { | ||
"turbo": "^2.0.10" | ||
"turbo": "^2.0.10", | ||
"husky": "^9.1.4" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pnpm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
// importing these from globals is optional | ||
import {describe, expect, test} from '@jest/globals'; | ||
import { describe, expect, test } from "@jest/globals"; | ||
|
||
import * as main from './main' | ||
import * as main from "./main"; | ||
|
||
describe('main',()=>{ | ||
test("should return true",async ()=>{ | ||
describe("main", () => { | ||
test("should return true", async () => { | ||
const result = await main.Main({}); | ||
expect(result).toBe(true); | ||
}) | ||
}) | ||
}); | ||
}); |
Oops, something went wrong.