Capitalize background scripts

This commit is contained in:
Shin'ya Ueoka 2019-02-24 20:54:35 +09:00
parent 21788740c1
commit a26d8a8a1b
50 changed files with 247 additions and 245 deletions

View file

@ -1,4 +1,4 @@
import GlobalMark from 'background/domains/global-mark';
import GlobalMark from 'background/domains/GlobalMark';
describe('background/domains/global-mark', () => {
describe('constructor and getter', () => {

View file

@ -1,4 +1,4 @@
import MemoryStorage from 'background/infrastructures/memory-storage';
import MemoryStorage from 'background/infrastructures/MemoryStorage';
describe("background/infrastructures/memory-storage", () => {
it('stores values', () => {

View file

@ -1,5 +1,5 @@
import MarkRepository from 'background/repositories/mark';
import GlobalMark from 'background/domains/global-mark';
import MarkRepository from 'background/repositories/MarkRepository';
import GlobalMark from 'background/domains/GlobalMark';
describe('background/repositories/mark', () => {
let repository;

View file

@ -1,4 +1,4 @@
import VersionRepository from 'background/repositories/version';
import VersionRepository from 'background/repositories/Version';
describe("background/repositories/version", () => {
let versionRepository;