1/* 2 * Copyright (c) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15import path from 'path'; 16import mocha from 'mocha'; 17import { expect } from 'chai'; 18import { RollUpPluginMock } from './helpers/mockRollupContext'; 19 20const PROJECT_ROOT = path.resolve(__dirname, '../../test/transform_ut'); 21const DEFAULT_PROJECT: string = 'application'; 22 23mocha.describe('test rollup mock', function () { 24 mocha.before(function () { 25 this.rollup = new RollUpPluginMock(); 26 }); 27 28 mocha.after(() => { 29 delete this.rollup; 30 }); 31 32 mocha.it('1-1: test rollup projectConfig', function () { 33 this.rollup.preview(PROJECT_ROOT, DEFAULT_PROJECT); 34 35 expect(this.rollup.share.projectConfig !== null).to.be.true; 36 }); 37});