UNPKG
mathsteps
Version:
latest (0.2.0)
0.2.0
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.2-readme
0.1.1
0.1.0
Step by step math solutions
github.com/socraticorg/mathsteps
socraticorg/mathsteps
mathsteps
/
test
/
simplifyExpression
/
basicsSearch
/
removeExponentByOne.test.js
8 lines
(5 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
removeExponentByOne =
require
(
'../../../lib/simplifyExpression/basicsSearch/removeExponentByOne'
);
const
testSimplify =
require
(
'./testSimplify'
);
describe
(
'removeExponentByOne'
,
function
(
) {
testSimplify
(
'x^1'
,
'x'
, removeExponentByOne); });