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