Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move manual tests outside
  • Loading branch information
Miguel Molina committed Oct 8, 2015
1 parent ff8159f commit b2a20ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -5,6 +5,6 @@
<link rel="stylesheet" href="categorized-tag-input.css" />
</head>
<body>
<script src="test/manual/bundle.js"></script>
<script src="bundle.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion test/manual/index.js → index.js
@@ -1,6 +1,6 @@
import React from 'react';

import Input from '../../src/index';
import Input from './src/index';

const categories = [
{
Expand Down
6 changes: 3 additions & 3 deletions webpack.test.config.js
Expand Up @@ -5,12 +5,12 @@ module.exports = {
entry: [
'webpack-dev-server/client?http://localhost:5000',
'webpack/hot/dev-server',
'./test/manual/index'
'./index'
],
output: {
path: path.join(__dirname, 'test/manual/'),
path: path.join(__dirname, '/'),
filename: 'bundle.js',
publicPath: '/test/manual/'
publicPath: '/'
},
resolve: {
extensions: ['', '.js', '.jsx']
Expand Down

0 comments on commit b2a20ad

Please sign in to comment.