「これからのための気持ちの整理。 」

これからのことを考えています。本当に、本当にめんどうくさい、めんどくさい人間です。これからのために、気持ちの整理をします。

2020-10-01から1ヶ月間の記事一覧

(リンク)jestでlocation.reloadをモックする

jest mock location reloadhttps://gist.github.com/remarkablemark/5cb571a13a6635ab89cf2bb47dc004a3

(リンク)Larastanの導入

Larastanの導入https://www.ritolab.com/entry/189

(リンク)eslintにprettier、eslint-plugin-vue を入れて導入

eslintにprettier、eslint-plugin-vue を入れて導入https://qiita.com/kobayashi-m42/items/ea2588686a477d083926https://qiita.com/ota-meshi/items/85bf17494c8ea0be05d7 eslint-plugin-vue で来たる Vue.js 3 のリリースに備えようhttps://devblog.thebas…

(リンク備忘録)webpack と jest で aliasの設定をする

webpack と jest で aliasの設定をするhttps://qiita.com/senou/items/d50eb55948f8453dece1https://qiita.com/Statham/items/8a1161c7816e360590f3

(備忘録)Schemaspy のdockerコンテナによるDB解析するコマンド

mkdir -p drivers curl -L https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-8.0.16.tar.gz | tar xvzf - -C drivers --strip=1 mysql-connector-java-8.0.16/mysql-connector-java-8.0.16.jar docker run -v "$PWD/schema:/output" -…

(備忘録)Jestの導入(Laravel)

jestのインストール npm install jest --save-dev rootディレクトリに jest.config.js を作成し下記の通り編集 module.exports = { testRegex: 'resources/js/test/.*.spec.js$' } resources/js/test/index.spec.js を作成し下記の通り編集 test('it works',…