Browse Source

test for computed property rewrites

contingency-plan
Rich Harris 10 years ago
parent
commit
6a905dbd99
  1. 3
      test/function/shadowed-external-export/main.js

3
test/function/shadowed-external-export/main.js

@ -1,7 +1,10 @@
import { relative } from 'path';
var paths = {};
function getRelativePath ( path, path2 ) {
paths[ path ] = true;
return relative( path, path2 );
}
assert.equal( getRelativePath( 'foo/bar/baz', 'foo/baz/bar' ), '../../baz/bar' );
assert.deepEqual( paths, { 'foo/bar/baz': true });

Loading…
Cancel
Save