forked from layer5io/layer5
-
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.
Signed-off-by: Nikhil-Ladha <[email protected]>
- Loading branch information
1 parent
2b8e93b
commit f91c2ea
Showing
20 changed files
with
119 additions
and
119 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
*.js eol=lf | ||
*.jsx eol=lf | ||
*.json eol=lf | ||
*.js text eol=lf | ||
*.jsx text eol=lf | ||
*.json text eol=lf |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BlogPage from './index'; | ||
it('Blog-grid renders without crashing', () => { | ||
shallow(<BlogPage />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BlogPage from './index'; | ||
it('Blog-grid renders without crashing', () => { | ||
shallow(<BlogPage />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BlogList from './index'; | ||
it('Blog-list renders without crashing', () => { | ||
shallow(<BlogList />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BlogList from './index'; | ||
it('Blog-list renders without crashing', () => { | ||
shallow(<BlogList />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import SeideBar from './index'; | ||
it('Blog-sidebar renders without crashing', () => { | ||
shallow(<SeideBar />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import SeideBar from './index'; | ||
it('Blog-sidebar renders without crashing', () => { | ||
shallow(<SeideBar />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BlogSinglePage from './index'; | ||
it('Blog-single renders without crashing', () => { | ||
shallow(<BlogSinglePage />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BlogSinglePage from './index'; | ||
it('Blog-single renders without crashing', () => { | ||
shallow(<BlogSinglePage />); | ||
}); |
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,6 +1,6 @@ | ||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import EventSinglePage from './index'; | ||
it('Event-single renders without crashing', () => { | ||
shallow(<EventSinglePage />); | ||
}); | ||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import EventSinglePage from './index'; | ||
it('Event-single renders without crashing', () => { | ||
shallow(<EventSinglePage />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import About from './index'; | ||
it('About renders without crashing', () => { | ||
shallow(<About />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import About from './index'; | ||
it('About renders without crashing', () => { | ||
shallow(<About />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Contact from './index'; | ||
it('Contact renders without crashing', () => { | ||
shallow(<Contact />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Contact from './index'; | ||
it('Contact renders without crashing', () => { | ||
shallow(<Contact />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import NewsPage from './index'; | ||
it('News-grid renders without crashing', () => { | ||
shallow(<NewsPage />); | ||
}); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import NewsPage from './index'; | ||
it('News-grid renders without crashing', () => { | ||
shallow(<NewsPage />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import NewsSinglePage from './index'; | ||
it('News-single renders without crashing', () => { | ||
shallow(<NewsSinglePage />); | ||
}); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import NewsSinglePage from './index'; | ||
it('News-single renders without crashing', () => { | ||
shallow(<NewsSinglePage />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import News from './index'; | ||
it('News renders without crashing', () => { | ||
shallow(<News />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import News from './index'; | ||
it('News renders without crashing', () => { | ||
shallow(<News />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import About from './index'; | ||
it('About renders without crashing', () => { | ||
shallow(<About />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import About from './index'; | ||
it('About renders without crashing', () => { | ||
shallow(<About />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Counters from './index'; | ||
it('Counters renders without crashing', () => { | ||
shallow(<Counters />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Counters from './index'; | ||
it('Counters renders without crashing', () => { | ||
shallow(<Counters />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Faq from './index'; | ||
it('Faq renders without crashing', () => { | ||
shallow(<Faq />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Faq from './index'; | ||
it('Faq renders without crashing', () => { | ||
shallow(<Faq />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Footer from './index'; | ||
it('Footer renders without crashing', () => { | ||
shallow(<Footer />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Footer from './index'; | ||
it('Footer renders without crashing', () => { | ||
shallow(<Footer />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BannerDefault from './index'; | ||
it('Banner-default renders without crashing', () => { | ||
shallow(<BannerDefault />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BannerDefault from './index'; | ||
it('Banner-default renders without crashing', () => { | ||
shallow(<BannerDefault />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Partners from './index'; | ||
it('Integrations renders without crashing', () => { | ||
shallow(<Partners />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Partners from './index'; | ||
it('Integrations renders without crashing', () => { | ||
shallow(<Partners />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Projects from './index'; | ||
it('Integrations renders without crashing', () => { | ||
shallow(<Projects />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Projects from './index'; | ||
it('Integrations renders without crashing', () => { | ||
shallow(<Projects />); | ||
}); |
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,6 +1,6 @@ | ||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BookSinglePage from './index'; | ||
it('Book-single renders without crashing', () => { | ||
shallow(<BookSinglePage />); | ||
}); | ||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import BookSinglePage from './index'; | ||
it('Book-single renders without crashing', () => { | ||
shallow(<BookSinglePage />); | ||
}); |
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,7 +1,7 @@ | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Pricing from './index'; | ||
it('Pricing renders without crashing', () => { | ||
shallow(<Pricing />); | ||
|
||
import React from 'react'; | ||
import { shallow } from 'enzyme'; | ||
import Pricing from './index'; | ||
it('Pricing renders without crashing', () => { | ||
shallow(<Pricing />); | ||
}); |