mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 04:05:52 +00:00
- Update tests to use jasmine compatible functions. This means removing `toThrowErrorMatchingInlineSnapshot` and manually removing indention to compare some of the complexly formatted error messages. - Remove usages of `assert` library in keypairs tests.
10 lines
297 B
JavaScript
10 lines
297 B
JavaScript
'use strict'
|
|
const { merge } = require('webpack-merge')
|
|
const { webpackForTest } = require('../../../weback.test.config')
|
|
const { getDefaultConfiguration } = require('../../../webpack.config')
|
|
|
|
module.exports = merge(
|
|
getDefaultConfiguration(),
|
|
webpackForTest('./test/index.ts', __dirname),
|
|
)
|