Skip to content

Commit

Permalink
fix(all): remove core-js dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 26, 2016
1 parent 73c18c6 commit 213fbfe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
3 changes: 1 addition & 2 deletions test/interpolation-binding.spec.js
@@ -1,3 +1,4 @@
import './setup';
import {
TemplatingBindingLanguage,
InterpolationBindingExpression
Expand All @@ -17,7 +18,6 @@ import {

import {ViewResources} from 'aurelia-templating';
import {TaskQueue} from 'aurelia-task-queue';
import {initialize} from 'aurelia-pal-browser';
import {DOM} from 'aurelia-pal';

function createElement(html) {
Expand All @@ -32,7 +32,6 @@ describe('InterpolationBinding', () => {
parser, eventManager, dirtyChecker, observerLocator, syntaxInterpreter, language, resources;

beforeAll(() => {
initialize();
eventManager = new EventManager();
dirtyChecker = new DirtyChecker();
dirtyChecker.checkDelay = checkDelay / 2;
Expand Down
4 changes: 1 addition & 3 deletions test/parse-content.spec.js
@@ -1,13 +1,11 @@
import './setup';
import {TemplatingBindingLanguage} from '../src/binding-language';
import {InterpolationBindingExpression} from '../src/interpolation-binding-expression';
import * as LogManager from 'aurelia-logging';
import {initialize} from 'aurelia-pal-browser';

var logger = LogManager.getLogger('templating-binding');

describe('TemplatingBindingLanguage', () => {
beforeAll(() => initialize());

describe('parseContent', () => {
var language, resources;
beforeAll(() => {
Expand Down
2 changes: 2 additions & 0 deletions test/setup.js
@@ -0,0 +1,2 @@
import {initialize} from 'aurelia-pal-browser';
initialize();
4 changes: 1 addition & 3 deletions test/syntax-interpreter.spec.js
@@ -1,3 +1,4 @@
import './setup';
import {SyntaxInterpreter} from '../src/syntax-interpreter';
import {
Parser,
Expand All @@ -9,7 +10,6 @@ import {
CallExpression,
bindingMode
} from 'aurelia-binding';
import {initialize} from 'aurelia-pal-browser';
import {DOM} from 'aurelia-pal';

export function createElement(html) {
Expand All @@ -19,8 +19,6 @@ export function createElement(html) {
}

describe('SyntaxInterpreter', () => {
beforeAll(() => initialize());

describe('determineDefaultBindingMode', () => {
var interpreter;

Expand Down

0 comments on commit 213fbfe

Please sign in to comment.