# 2019.09.05 今天是每日时报陪你的第 240 天
[文章] Linux 的桌面进化历史:https://opensource.com/article/19/8/how-linux-desktop-grown (opens new window)
[文章] 阮一峰写的 React Hooks 入门教程:http://www.ruanyifeng.com/blog/2019/09/react-hooks.html (opens new window)
[类库] 一键集成 Jest + Puppeteer 的类库,刚发现,感觉有它方便多了:https://github.com/smooth-code/jest-puppeteer (opens new window)
[工具] 微软推出一个工具箱合集:https://github.com/microsoft/web-build-tools (opens new window)
[工具] 编程备忘的网站,把一个软件最常用的一些命令给你记录下来了,非常的方便:https://devhints.io (opens new window)
# 配图 - Linux 桌面进化
# 配图 - 编程备忘
# 示例 - Jest-Puppeteer
describe('Google', () => {
beforeAll(async () => {
await page.goto('https://google.com')
})
it('should display "google" text on page', async () => {
await expect(page).toMatch('google')
})
})
# 今日图