forked from folio-org/ui-eholdings
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joe LaSala
committed
Jul 27, 2017
1 parent
dd10f6f
commit 9a87238
Showing
5 changed files
with
314 additions
and
452 deletions.
There are no files selected for viewing
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 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,10 +1,35 @@ | ||
/* global it */ | ||
import { expect } from 'chai'; | ||
import $ from 'jquery'; | ||
|
||
import { describeApplication } from './helpers'; | ||
|
||
describeApplication('Acceptance', function() { | ||
describeApplication('eHoldings', function() { | ||
it('should render the app', function() { | ||
expect(this.$.find('h1')).to.have.text('Folio Resource Management'); | ||
expect($('h1')).to.have.text('Folio Resource Management'); | ||
}); | ||
|
||
it('has a searchbox with options to search for vendor, package and title'); | ||
|
||
describe("searching for the vendor 'ebsco'", function() { | ||
it("displays vendor entries related to 'ebsco'"); | ||
it("displays the name, number of packages available, and packages subscribed to for each vendor"); | ||
|
||
describe("clicking on first result", function() { | ||
it("shows vendor details"); | ||
it("shows packages for vendor"); | ||
}); | ||
|
||
describe("sorting by name", function() { | ||
it("sorts by name"); | ||
}); | ||
}); | ||
|
||
describe("searching for the vendor 'fhqwhgads'", function() { | ||
it("displays 'no results' message"); | ||
}); | ||
|
||
describe("encountering a server error", function() { | ||
it("dies with grace"); | ||
}); | ||
}); |
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
Oops, something went wrong.