mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
68 lines
1.6 KiB
JavaScript
68 lines
1.6 KiB
JavaScript
describe('css snapshot', function() {
|
|
|
|
[
|
|
"bars-clear.html",
|
|
"button-bar.html",
|
|
"buttons-borderless.html",
|
|
"buttons-button-block-clear.html",
|
|
"buttons-button-block.html",
|
|
"buttons-button-outline.html",
|
|
"buttons-clear.html",
|
|
"buttons-default.html",
|
|
"buttons-full.html",
|
|
"buttons-large.html",
|
|
"buttons-link-block-clear.html",
|
|
"buttons-link-block.html",
|
|
"buttons-link-outline.html",
|
|
"buttons-misc.html",
|
|
"buttons-outline.html",
|
|
"buttons-pseudo-icon-compare.html",
|
|
"buttons-small.html",
|
|
"cards-header-footer.html",
|
|
"cards-item-avatar.html",
|
|
"cards-item-body.html",
|
|
"cards-item-icon.html",
|
|
"cards-item-thumbnail.html",
|
|
"cards-text.html",
|
|
"colors.html",
|
|
"footers.html",
|
|
"grid.html",
|
|
"headers.html",
|
|
"input-checkbox.html",
|
|
"input-radio.html",
|
|
"input-range.html",
|
|
"input-select.html",
|
|
"input-text.html",
|
|
"input-textarea.html",
|
|
"input-toggle.html",
|
|
"lists-avatar.html",
|
|
"lists-buttons.html",
|
|
"lists-colors.html",
|
|
"lists-icons.html",
|
|
"lists-text.html",
|
|
"lists-thumbnails.html",
|
|
"progress.html",
|
|
"scroll.html",
|
|
"search-ios.html",
|
|
"search.html",
|
|
"split-pane.html",
|
|
"status-bar.html",
|
|
"tabs-and-cards.html",
|
|
"tabs-default.html",
|
|
"tabs-icons-bottom.html",
|
|
"tabs-icons-left.html",
|
|
"tabs-icons-right.html",
|
|
"tabs-no-icons.html",
|
|
"tabs-only-icons.html",
|
|
"tabs-with-footer.html",
|
|
"type.html",
|
|
].forEach(function(testId) {
|
|
describe(testId, function() {
|
|
it('init', function() {
|
|
browser.get('http://localhost:8876/test/css/' + testId);
|
|
});
|
|
});
|
|
});
|
|
|
|
});
|