global expect

jh-changes
Shin'ya Ueoka 6 years ago
parent b11a098d7c
commit fc8a12faa6
  1. 2
      karma.conf.js
  2. 1
      test/background/actions/find.test.js
  3. 1
      test/background/reducers/find.test.js
  4. 1
      test/background/reducers/setting.test.js
  5. 1
      test/console/actions/console.test.js
  6. 1
      test/console/reducers/console.test.js
  7. 1
      test/content/actions/addon.test.js
  8. 1
      test/content/actions/follow-controller.test.js
  9. 1
      test/content/actions/input.test.js
  10. 1
      test/content/actions/setting.test.js
  11. 1
      test/content/components/common/follow.test.js
  12. 1
      test/content/components/common/hint.test.js
  13. 1
      test/content/components/common/input.test.js
  14. 1
      test/content/hint-key-producer.test.js
  15. 1
      test/content/navigates.test.js
  16. 1
      test/content/reducers/addon.test.js
  17. 1
      test/content/reducers/find.test.js
  18. 1
      test/content/reducers/follow-controller.test.js
  19. 1
      test/content/reducers/input.test.js
  20. 1
      test/content/reducers/setting.test.js
  21. 2
      test/main.js
  22. 1
      test/settings/components/form/blacklist-form.test.jsx
  23. 1
      test/settings/components/form/keymaps-form.test.jsx
  24. 1
      test/settings/components/form/properties-form.test.jsx
  25. 1
      test/settings/components/form/search-engine-form.test.jsx
  26. 1
      test/settings/components/ui/input.test.jsx
  27. 1
      test/settings/reducers/setting.test.js
  28. 1
      test/shared/commands/parsers.test.js
  29. 1
      test/shared/settings/validator.test.js
  30. 1
      test/shared/settings/values.test.js
  31. 1
      test/shared/store/index.test.js
  32. 1
      test/shared/utils/keys.test.js
  33. 1
      test/shared/utils/re.test.js

@ -6,12 +6,14 @@ module.exports = function (config) {
basePath: '',
frameworks: ['mocha'],
files: [
'test/main.js',
'test/**/*.test.js',
'test/**/*.test.jsx',
'test/**/*.html'
],
preprocessors: {
'test/main.js': [ 'webpack' ],
'test/**/*.test.js': [ 'webpack' ],
'test/**/*.test.jsx': [ 'webpack' ],
'test/**/*.html': ['html2js']

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'background/actions';
import * as findActions from 'background/actions/find';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'background/actions';
import findReducer from 'background/reducers/find';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'background/actions';
import settingReducer from 'background/reducers/setting';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'console/actions';
import * as consoleActions from 'console/actions/console';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'console/actions';
import reducer from 'console/reducers';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import * as addonActions from 'content/actions/addon';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import * as followControllerActions from 'content/actions/follow-controller';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import * as inputActions from 'content/actions/input';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import * as settingActions from 'content/actions/setting';

@ -1,4 +1,3 @@
import { expect } from "chai";
import FollowComponent from 'content/components/common/follow';
describe('FollowComponent', () => {

@ -1,4 +1,3 @@
import { expect } from "chai";
import Hint from 'content/components/common/hint';
describe('Hint class', () => {

@ -1,5 +1,4 @@
import InputComponent from 'content/components/common/input';
import { expect } from "chai";
describe('InputComponent', () => {
it('register callbacks', () => {

@ -1,4 +1,3 @@
import { expect } from "chai";
import HintKeyProducer from 'content/hint-key-producer';
describe('HintKeyProducer class', () => {

@ -1,4 +1,3 @@
import { expect } from 'chai';
import * as navigates from 'content/navigates';
const testRel = (done, rel, html) => {

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import addonReducer from 'content/reducers/addon';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import findReducer from 'content/reducers/find';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import followControllerReducer from 'content/reducers/follow-controller';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import inputReducer from 'content/reducers/input';

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'content/actions';
import settingReducer from 'content/reducers/setting';

@ -0,0 +1,2 @@
import chai from 'chai';
global.expect = chai.expect;

@ -1,4 +1,3 @@
import { expect } from 'chai';
import { h, render } from 'preact';
import BlacklistForm from 'settings/components/form/blacklist-form'

@ -1,4 +1,3 @@
import { expect } from 'chai';
import { h, render } from 'preact';
import KeymapsForm from 'settings/components/form/keymaps-form'

@ -1,4 +1,3 @@
import { expect } from 'chai';
import { h, render } from 'preact';
import PropertiesForm from 'settings/components/form/properties-form'

@ -1,4 +1,3 @@
import { expect } from 'chai';
import { h, render } from 'preact';
import SearchForm from 'settings/components/form/search-form'

@ -1,4 +1,3 @@
import { expect } from 'chai';
import { h, render } from 'preact';
import Input from 'settings/components/ui/input'

@ -1,4 +1,3 @@
import { expect } from "chai";
import actions from 'settings/actions';
import settingReducer from 'settings/reducers/setting';

@ -1,4 +1,3 @@
import { expect } from "chai";
import * as parsers from 'shared/commands/parsers';
describe("shared/commands/parsers", () => {

@ -1,4 +1,3 @@
import { expect } from "chai";
import { validate } from 'shared/settings/validator';
describe("setting validator", () => {

@ -1,4 +1,3 @@
import { expect } from 'chai';
import * as values from 'shared/settings/values';
describe("settings values", () => {

@ -1,4 +1,3 @@
import { expect } from "chai";
import { createStore } from 'shared/store';
describe("Store class", () => {

@ -1,4 +1,3 @@
import { expect } from 'chai';
import * as keys from 'shared/utils/keys';
describe("keys util", () => {

@ -1,4 +1,3 @@
import { expect } from 'chai';
import * as re from 'shared/utils/re';
describe("re util", () => {