Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Dec 10, 2024
1 parent c75e188 commit 9b44971
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/lib/cmd/dal.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const coffee = require('coffee');
const mm = require('mm');
const fs = require('node:fs/promises');
const assert = require('assert');
const version = Number(process.version.substring(1, 3));

describe('test/lib/cmd/dal.test.js', () => {
const eggBin = require.resolve('../../../bin/egg-bin.js');
Expand All @@ -24,6 +25,7 @@ describe('test/lib/cmd/dal.test.js', () => {
});

it('egg-bin dal gen should work', async () => {
if (version === 14) return;
await coffee.fork(eggBin, [ 'dal', 'gen', '--teggPkgName', '@eggjs/xianyadan', '--teggDalPkgName', '@eggjs/xianyadan/dal' ], { cwd })
.debug()
// .expect('code', 0)
Expand Down

0 comments on commit 9b44971

Please sign in to comment.