-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#77 Cleanup * delete unused angular material imports * removed design-test component * tslint config updated: - ignore generated backend client - ignore import statements - allow leading underscore for variables * fixed all ts lint errors * Remove create random button & add functionality to cancel button * unify animation syntax: - add correct animation to testsuite editor - fix error with private attributes in testsuite - remove commented code from ErrorHandlerService #161 Restructure Docker deployment * Remove individual docker-compose files * Update language-server dependency for frontend
- Loading branch information
Showing
20 changed files
with
29 additions
and
396 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
163 changes: 0 additions & 163 deletions
163
frontend/src/app/design-test/design-test.component.html
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
frontend/src/app/design-test/design-test.component.spec.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +0,0 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import * as faker from 'faker'; | ||
|
||
@Component({ | ||
selector: 'ovide-design-test', | ||
templateUrl: './design-test.component.html', | ||
styleUrls: ['./design-test.component.scss'] | ||
}) | ||
export class DesignTestComponent implements OnInit { | ||
|
||
constructor() { } | ||
|
||
tableDisplayedColumns: string []; | ||
tableDataSource: object[]; | ||
|
||
ngOnInit(): void { | ||
this.tableDisplayedColumns = ['name', 'age', 'street', 'city', 'expected', 'passed']; | ||
|
||
const fakeData = () => { | ||
return { | ||
name: faker.name.findName(), | ||
age: faker.random.number({min: 10, max: 80}), | ||
street: faker.address.streetName(), | ||
city: faker.address.city(), | ||
expected: faker.random.boolean(), | ||
passed: faker.random.boolean(), | ||
}; | ||
}; | ||
this.tableDataSource = Array.from({length: 8}, fakeData); | ||
} | ||
|
||
} | ||
Oops, something went wrong.