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
/
removeDivisionByOne.test.js
8 lines
(5 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
removeDivisionByOne =
require
(
'../../../lib/simplifyExpression/basicsSearch/removeDivisionByOne'
);
const
testSimplify =
require
(
'./testSimplify'
);
describe
(
'removeDivisionByOne'
,
function
(
) {
testSimplify
(
'x/1'
,
'x'
, removeDivisionByOne); });