Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 37c271c

Browse files
authored
bugs 757 and 815 (#985)
* Deploy an empty Business Network via Import/Replace * Fix broken link * add-connection-profile unit tests * 757 fix path to model files * 815 correct the height of the UI spinner
1 parent 1e89644 commit 37c271c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packages/composer-playground/src/app/editor/editor.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,13 +251,13 @@ describe('EditorComponent', () => {
251251
component['files'][1].should.deep.equal({
252252
model: true,
253253
id: 'model 1',
254-
displayID: 'lib/model 1.cto',
254+
displayID: 'model/model 1.cto',
255255
});
256256

257257
component['files'][2].should.deep.equal({
258258
model: true,
259259
id: 'model 2',
260-
displayID: 'lib/model 2.cto',
260+
displayID: 'model/model 2.cto',
261261
});
262262

263263
component['files'][3].should.deep.equal({

packages/composer-playground/src/app/editor/editor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export class EditorComponent implements OnInit {
120120
newModelFiles.push({
121121
model: true,
122122
id: modelFile.getNamespace(),
123-
displayID: 'lib/' + modelFile.getNamespace() + '.cto',
123+
displayID: 'model/' + modelFile.getNamespace() + '.cto',
124124
});
125125
});
126126
newModelFiles.sort((a, b) => {

packages/composer-playground/src/app/services/about.service.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('AboutService', () => {
5858
});
5959
});
6060

61-
xit('it should make an http call to retrieve the json that shows the versions',
61+
it('it should make an http call to retrieve the json that shows the versions',
6262
async(inject([AboutService, XHRBackend], (aboutService, mockBackend) => {
6363
// setup a mocked response
6464
mockBackend.connections.subscribe((connection) => {
@@ -81,7 +81,7 @@ describe('AboutService', () => {
8181
});
8282
})));
8383

84-
xit('should enter catch block',
84+
it('should enter catch block',
8585
async(inject([AboutService, XHRBackend], (aboutService, mockBackend) => {
8686
mockBackend.connections.subscribe(
8787
(connection) => {

packages/composer-playground/src/assets/styles/components/_spinner.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ $spinnerInitAngleEase: cubic-bezier(.6, .0, .5, 1.0);
1212
$spinnerEndFirstRotationEase: cubic-bezier(.0, .0, .7, 1.1);
1313
$spinnerEndSecondRotationEase: cubic-bezier(.0, .0, 1.0, 1.1);
1414
$spinnerEndAngleEase: cubic-bezier(.0, .0, 1.0, 1.0);
15-
$spinner-small-size: 1.4rem;
15+
$spinner-small-size: 2rem;
1616
$spinner-medium-size: 3rem;
1717
$spinner-large-size: 5rem;
1818

0 commit comments

Comments
 (0)