Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Dec 25, 2024
1 parent 4917ce9 commit dd858a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eggjs/bin",
"version": "7.0.0-beta.2",
"version": "7.0.0-beta.3",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion test/cmd/test.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('test/cmd/test.test.ts', () => {
const cwd = getFixtures('test-files');

describe('egg-bin test', () => {
it('should success js', () => {
it.only('should success js', () => {

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 22)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 22)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 18)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 18)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 20)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 20)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 18)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 18)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 20)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 20)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 22)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 22)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 18.19.0)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (macos-latest, 18.19.0)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 18.19.0)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (ubuntu-latest, 18.19.0)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 18.19.0)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 18.19.0)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 20)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 20)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 18)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 18)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 22)

it.only not permitted

Check warning on line 12 in test/cmd/test.test.ts

View workflow job for this annotation

GitHub Actions / Node.js / Test (windows-latest, 22)

it.only not permitted
return coffee.fork(eggBin, [ 'test' ], { cwd })
.debug()
.expect('stdout', /should success/)
Expand Down
3 changes: 2 additions & 1 deletion test/coffee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export default {
];
options.env = {
// EGG_TYPESCRIPT: 'true',
NODE_DEBUG: process.env.NODE_DEBUG,
// NODE_DEBUG: process.env.NODE_DEBUG,
NODE_DEBUG: '@eggjs/*',
PATH: process.env.PATH,
...options.env,
};
Expand Down

0 comments on commit dd858a9

Please sign in to comment.