Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit 09a7893

Browse files
committed
feat: replaced by @recore/solution in the test files
1 parent 15c1774 commit 09a7893

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/loader/test/bootstrap-transform/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('test bootstrap transform', () => {
3131
expect(err).to.equal(null);
3232
expect(mockFindAppEntry.called);
3333
const newSource = result[0];
34-
expect(newSource.split('\n')[0]).to.includes('import "@ali/nowa-recore-solution/src/recore-public-path";');
34+
expect(newSource.split('\n')[0]).to.includes('import "@recore/solution/src/recore-public-path";');
3535
expect(newSource.split('\n')[1]).to.include('import \'@babel/polyfill\';');
3636
expect(newSource.split('\n')[2]).to.include('import { runApp } from \'@ali/recore\'');
3737
expect(newSource.split('\n')[3]).to.include(`import App from "${MAIN_PATH}?main&basename=%2F"`);

packages/solution/__tests__/plugins/parse-config.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { START, BUILD } = require('../../src/symbol');
33

44
const runner = {};
55
const config = {
6-
solution: '@ali/nowa-recore-solution',
6+
solution: '@recore/solution',
77
alias: {
88
component: './component',
99
},

0 commit comments

Comments
 (0)