Skip to content

Commit

Permalink
Merge branch 'release-5.21'
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokiterashima committed Feb 11, 2021
2 parents 49b9d88 + 86e20f5 commit 3d45422
Show file tree
Hide file tree
Showing 76 changed files with 4,890 additions and 4,113 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wise",
"version": "5.20.5",
"version": "5.21.0",
"description": "Web-based Inquiry Science Environment",
"main": "app.js",
"browserslist": [
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<artifactId>wise</artifactId>
<packaging>war</packaging>
<name>Web-based Inquiry Science Environment</name>
<version>5.20.5</version>
<version>5.21.0</version>
<url>http://wise5.org</url>
<licenses>
<license>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.20.5
5.21.0
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ describe('DiscussionService', () => {
service = TestBed.get(DiscussionService);
configService = TestBed.get(ConfigService);
studentDataService = TestBed.get(StudentDataService);
spyOn(service, 'getTranslation').and.callFake((key: string) => {
if (key === 'ENTER_PROMPT_HERE') {
return 'Enter prompt here';
}
});
});
createComponent();
isCompleted();
Expand Down Expand Up @@ -92,7 +87,7 @@ function createComponent() {
it('should create a discussion component', () => {
const component = service.createComponent();
expect(component.type).toEqual('Discussion');
expect(component.prompt).toEqual('Enter prompt here');
expect(component.prompt).toEqual('');
expect(component.isStudentAttachmentEnabled).toEqual(true);
expect(component.gateClassmateResponses).toEqual(true);
});
Expand Down
Loading

0 comments on commit 3d45422

Please sign in to comment.