21720: added type assertions for AxiosInstance post
[arvados.git] / services / workbench2 / config / jest / cssTransform.js
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 'use strict';
6
7 // This is a custom Jest transformer turning style imports into empty objects.
8 // http://facebook.github.io/jest/docs/en/webpack.html
9
10 module.exports = {
11   process() {
12     return 'module.exports = {};';
13   },
14   getCacheKey() {
15     // The output is always the same.
16     return 'cssTransform';
17   },
18 };