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

Removed fdescribe from visual test #1109

Merged
merged 2 commits into from
Sep 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SkyVisualTest } from '../../../config/utils/visual-test-commands';

fdescribe('Fluid grid', () => {
describe('Fluid grid', () => {

it('should handle very small screens', () => {
return SkyVisualTest.setupTest('fluid-grid', 600)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,11 @@
</div>

<div id="screenshot-link-records-created-match">
<sky-link-records [items]="items" [matches]="matches2" [showNewFieldValues]="false" id="create-link-records" >
<sky-link-records
[items]="items"
[matches]="matches2"
[showNewFieldValues]="false"
id="create-link-records">
<sky-link-records-item-title>
<ng-template let-item="item">Applicant</ng-template>
</sky-link-records-item-title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('link-records component', () => {
it('should display linked match', () => {
return SkyVisualTest.setupTest('link-records')
.then(() => {
element(by.css('#linked-match-records .link-records-item-footer .sky-btn-primary')).click();
element(by.css('#linked-match-records .link-records-item-footer .sky-btn-default')).click();
return SkyVisualTest.compareScreenshot({
screenshotName: 'link_records_linked_match',
selector: '#screenshot-link-records-linked-match',
Expand All @@ -40,7 +40,7 @@ describe('link-records component', () => {
it('should display created match', () => {
return SkyVisualTest.setupTest('link-records')
.then(() => {
element(by.css('#create-link-records .link-records-item-footer .sky-btn-link')).click();
element(by.css('#create-link-records .link-records-item-footer .sky-btn-default')).click();
return SkyVisualTest.compareScreenshot({
screenshotName: 'link_records_created_match',
selector: '#screenshot-link-records-created-match',
Expand Down