Skip to content

Commit

Permalink
Maintenance release 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jkphl committed Jan 14, 2015
1 parent e85346c commit 844e750
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -997,7 +997,7 @@ Known problems / To-do
Release history
---------------

#### master (will become v1.0.10)
#### v1.0.10 Maintenance release
* Added support for custom mode keys
* Fixed external CLI transform configuration support
* Fixed typos in README example ([PR #39](https://github.com/jkphl/svg-sprite/pull/39))
Expand Down
24 changes: 12 additions & 12 deletions test/svg-sprite.js
Expand Up @@ -143,7 +143,7 @@ describe('svg-sprite', function() {
describe('with ' + weather.length + ' SVG files', function() {

it('returns an error', function(done) {
this.timeout(20000);
this.timeout(30000);
addFixtureFiles(spriter, weather, cwdWeather);
spriter.compile(function(error, result) {
should(error).be.an.Error;
Expand All @@ -164,7 +164,7 @@ describe('svg-sprite', function() {
describe('in «css» mode and all render types enabled', function() {

it('creates 5 files for vertical layout', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter = new SVGSpriter({
dest : dest
});
Expand Down Expand Up @@ -193,7 +193,7 @@ describe('svg-sprite', function() {
describe('then rerun with all render types disabled', function() {

it('creates 1 additional file for horizontal layout', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter.compile({
css : {
sprite : 'svg/css.horizontal.svg',
Expand All @@ -208,7 +208,7 @@ describe('svg-sprite', function() {
});

it('creates 1 additional file for diagonal layout', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter.compile({
css : {
sprite : 'svg/css.diagonal.svg',
Expand All @@ -223,7 +223,7 @@ describe('svg-sprite', function() {
});

it('creates 1 additional file for packed layout', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter.compile({
css : {
sprite : 'svg/css.packed.svg',
Expand Down Expand Up @@ -439,7 +439,7 @@ describe('svg-sprite', function() {
describe('in «view» mode', function() {

it('creates 2 files for packed layout', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter.compile({
view : {
sprite : 'svg/view.packed.svg',
Expand Down Expand Up @@ -519,7 +519,7 @@ describe('svg-sprite', function() {
describe('with «css» mode, vertical layout and CSS render type', function() {

it('creates 2 files', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter = new SVGSpriter({
dest : dest,
shape : {
Expand Down Expand Up @@ -595,7 +595,7 @@ describe('svg-sprite', function() {
describe('with «css» mode, horizontal layout and Sass render type', function() {

it('creates 2 files', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter = new SVGSpriter({
dest : dest,
shape : {
Expand Down Expand Up @@ -682,7 +682,7 @@ describe('svg-sprite', function() {
describe('with «css» mode, packed layout and LESS render type', function() {

it('creates 2 files', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter = new SVGSpriter({
dest : dest,
shape : {
Expand Down Expand Up @@ -774,7 +774,7 @@ describe('svg-sprite', function() {
describe('with «view» mode, vertical layout and CSS render type', function() {

it('creates 2 files', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter = new SVGSpriter({
dest : dest,
shape : {
Expand Down Expand Up @@ -850,7 +850,7 @@ describe('svg-sprite', function() {
describe('with «view» mode, horizontal layout and Sass render type', function() {

it('creates 2 files', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter = new SVGSpriter({
dest : dest,
shape : {
Expand Down Expand Up @@ -937,7 +937,7 @@ describe('svg-sprite', function() {
describe('with «view» mode, packed layout and LESS render type', function() {

it('creates 2 files', function(done) {
this.timeout(20000);
this.timeout(30000);
spriter = new SVGSpriter({
dest : dest,
shape : {
Expand Down

0 comments on commit 844e750

Please sign in to comment.