Skip to content

Commit

Permalink
server.env file added
Browse files Browse the repository at this point in the history
  • Loading branch information
SuparnaSuresh committed Dec 5, 2024
1 parent 4d2fa91 commit 3515049
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/test/GradleSingleModLCLSTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ import * as constants from './definitions/constants';
const path = require('path');
const assert = require('assert');

describe('LCLS Test for Gradle Project', function () {
describe('LCLS tests for Gradle Project', function () {
let editor: TextEditor;

before(() => {
utils.copyConfig(path.join(utils.getGradleProjectPath(), 'src', 'main', 'liberty', 'config'),path.join(utils.getGradleProjectPath(), 'src', 'main', 'liberty', 'config2'));
});

it('should apply quick fix for invalid value in server.xml', async () => {
it('Should apply quick fix for invalid value in server.xml', async () => {
const section = await new SideBarView().getContent().getSection(constants.GRADLE_PROJECT);
section.expand();
await VSBrowser.instance.openResources(path.join(utils.getGradleProjectPath(), 'src', 'main', 'liberty', 'config2', 'server.xml'));
Expand Down Expand Up @@ -71,9 +71,8 @@ describe('LCLS Test for Gradle Project', function () {
}).timeout(38000);

after(() => {

utils.removeConfigDir(path.join(utils.getGradleProjectPath(), 'src', 'main', 'liberty', 'config2'));
console.log("Removed new config folder:");
});

});
});

0 comments on commit 3515049

Please sign in to comment.